repo.or.cz
/
ruby-svn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update comment.
[ruby-svn.git]
/
wince
/
direct.h
blob
7c859b9d3b3aa668f85820edb814961aea8a5f57
1
#ifndef DIRECT_H
2
#define DIRECT_H 1
3
4
5
#ifdef __cplusplus
6
extern
"C"
{
7
#endif
8
9
char
*
getcwd
(
char
*
buffer
,
int
maxlen
);
10
int
_chdir
(
const char
*
dirname
);
11
int
_rmdir
(
const char
*
dir
);
12
int
_mkdir
(
const char
*
dir
);
13
14
#ifdef __cplusplus
15
};
16
#endif
17
18
#define chdir _chdir
19
#define rmdir _rmdir
20
#define mkdir _mkdir
21
22
#endif