You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ffdb/test.c

17 lines
281 B
C

#include "test.h"
#include "trie.h"
#include <sys/stat.h>
bool ffdb_test()
{
const char* d = "/tmp/ffdb-test";
mkdir( d, 0755 );
ffdb_trie_set( d, "https://example.com/actor", "T" );
//ffdb_trie_set( d, "https://apogee.polaris-1.work/owner/actor", "T" );
return false;
}