summaryrefslogtreecommitdiffstats
path: root/nuttx/Documentation/NuttxUserGuide.html
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2008-08-22 23:38:33 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2008-08-22 23:38:33 +0000
commit729d55afec08d6b46d6ab1d7096b99689a09cb62 (patch)
tree30bf114247b468440ddf59a026c6a205cde6b5f0 /nuttx/Documentation/NuttxUserGuide.html
parent9370f6c69c50269db7d4e6d76a00899eeb408563 (diff)
Add chdir() and getcwd()
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@837 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/Documentation/NuttxUserGuide.html')
-rw-r--r--nuttx/Documentation/NuttxUserGuide.html9
1 files changed, 6 insertions, 3 deletions
diff --git a/nuttx/Documentation/NuttxUserGuide.html b/nuttx/Documentation/NuttxUserGuide.html
index e5cb13eb3b..0feb1ef0e1 100644
--- a/nuttx/Documentation/NuttxUserGuide.html
+++ b/nuttx/Documentation/NuttxUserGuide.html
@@ -21,7 +21,7 @@ User's Manual
<p>
Gregory Nutt
<p>
-<small>Last Update: August 10, 2008</small>
+<small>Last Update: August 22, 2008</small>
</center>
<h1>1.0 <A NAME="Introduction">Introduction</a></h1>
@@ -5942,6 +5942,11 @@ interface of the same name.
void seekdir(FAR DIR *dirp, int loc);
int telldir(FAR DIR *dirp);
</pre></ul>
+<ul><pre>
+ #include &lt;unistd.h&gt;
+ int chdir(FAR const char *path);
+ FAR char *getcwd(FAR char *buf, size_t size);
+</pre></ul>
<h2><a name="standardio">2.11.4 Standard I/O</a></h2>
<ul><pre>
@@ -5970,10 +5975,8 @@ interface of the same name.
int vfprintf(FILE *stream, const char *s, va_list ap);
int vsprintf(char *buf, const char *s, va_list ap);
- int chdir(const char *path); /* Prototyped but not implemented */
FILE *fdopen(int fd, const char *type);
int fstat(int fd, FAR struct stat *buf); /* Prototyped but not implemented */
- char *getcwd(FAR char *buf, size_t size); /* Prototyped but not implemented */
int mkdir(const char *path, mode_t mode);
int rmdir(const char *path);
int stat(const char *path, FAR struct stat *buf);