1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 00:29:31 +00:00

Added missing function

This commit is contained in:
Stefan 2018-02-07 01:55:56 +01:00
parent a227089ba1
commit a48f998162

View File

@ -4,7 +4,7 @@
<title>cc65 function reference
<author><url url="mailto:uz@cc65.org" name="Ullrich von Bassewitz">,<newline>
<url url="mailto:greg.king5@verizon.net" name="Greg King">
<date>2018-02-06
<date>2018-02-07
<abstract>
cc65 is a C compiler for 6502 based systems. This function reference describes
@ -726,7 +726,7 @@ communication.
<itemize>
<!-- <item><ref id="chdir" name="chdir"> -->
<item><ref id="exec" name="exec">
<!-- <item><ref id="getcwd" name="getcwd"> -->
<item><ref id="getcwd" name="getcwd">
<item><ref id="getopt" name="getopt">
<!-- <item><ref id="lseek" name="lseek"> -->
<!-- <item><ref id="mkdir" name="mkdir"> -->
@ -3481,6 +3481,24 @@ puts (getdevicedir (getcurrentdevice (), buf, sizeof buf));
</quote>
<sect1>getcwd<label id="getcwd"><p>
<quote>
<descrip>
<tag/Function/Get current working directory.
<tag/Header/<tt/<ref id="unistd.h" name="unistd.h">/
<tag/Declaration/<tt/char* __fastcall__ getcwd (char* buf, size_t size);/
<tag/Description/The function will return the current working directory.
<tag/Notes/<itemize>
<item>The function is only available as fastcall function, so it may only
be used in presence of a prototype.
</itemize>
<tag/Availability/POSIX 1003.1
<tag/Example/None.
</descrip>
</quote>
<sect1>getdevicedir<label id="getdevicedir"><p>
<quote>