open.h 204 B

12345678910
  1. #ifndef OPEN_H
  2. #define OPEN_H
  3. extern int open_read(const char *);
  4. extern int open_write(const char *);
  5. extern int open_lock(const char *);
  6. extern int open_cwd(void);
  7. extern int open_pipe(int *);
  8. #endif