mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
11 lines
204 B
C
11 lines
204 B
C
#ifndef OPEN_H
|
|
#define OPEN_H
|
|
|
|
extern int open_read(const char *);
|
|
extern int open_write(const char *);
|
|
extern int open_lock(const char *);
|
|
extern int open_cwd(void);
|
|
extern int open_pipe(int *);
|
|
|
|
#endif
|