forked from KolibriOS/kolibrios
1ed1f3a5b1
- headers update (now used true functions with attributes instead of pointers) - fixed some samples kos_mbedtls: microtar: changes for compatible to latest version tcc and the libc.obj headers git-svn-id: svn://kolibrios.org@9812 a494cfbc-eb01-0410-851d-a64ba20cac60
11 lines
215 B
C
11 lines
215 B
C
#ifndef _DIR_H_
|
|
#define _DIR_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
DLLAPI char* getcwd(char* buf, unsigned size);
|
|
DLLAPI void setcwd(const char* cwd);
|
|
DLLAPI int rmdir(const char* dir);
|
|
DLLAPI int mkdir(const char* dir);
|
|
|
|
#endif |