Subversion Repositories Kolibri OS

Rev

Rev 8793 | Rev 9810 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #ifndef _DIR_H_
  2. #define _DIR_H_
  3.  
  4. #include <stddef.h>
  5.  
  6. extern char* _FUNC(getcwd)(char* buf, unsigned size);
  7. extern void _FUNC(setcwd)(const char* cwd);
  8. extern int _FUNC(rmdir)(const char* dir);
  9. extern int _FUNC(mkdir)(const char* dir);
  10.  
  11. #endif