File: fs.h

package info (click to toggle)
dqlite 1.18.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,372 kB
  • sloc: ansic: 57,583; makefile: 336; sh: 243
file content (12 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef DQLITE_TEST_FS_H
#define DQLITE_TEST_FS_H

#define TEST__DIR_TEMPLATE "/tmp/dqlite-test-XXXXXX"

/* Setup a temporary directory. */
char *test_dir_setup(void);

/* Remove the temporary directory. */
void test_dir_tear_down(char *dir);

#endif /* DQLITE_TEST_FS_H */