mirror of
https://github.com/cc65/cc65.git
synced 2025-02-07 04:31:38 +00:00
Sorted
This commit is contained in:
parent
a48f998162
commit
b69ee802fd
@ -3524,6 +3524,29 @@ puts (getdevicedir (getcurrentdevice (), buf, sizeof buf));
|
||||
</quote>
|
||||
|
||||
|
||||
<sect1>getenv<label id="getenv"><p>
|
||||
|
||||
<quote>
|
||||
<descrip>
|
||||
<tag/Function/Return a value from the environment.
|
||||
<tag/Header/<tt/<ref id="stdlib.h" name="stdlib.h">/
|
||||
<tag/Declaration/<tt/char* __fastcall__ getenv (const char* name);/
|
||||
<tag/Description/The function searches the environment for an entry that
|
||||
matches <tt/name/ and returns its value. The environment consists of a list
|
||||
of strings in the form <tt/name=value/. If there is no match, <tt/getenv/
|
||||
returns <tt/NULL/.
|
||||
<tag/Notes/<itemize>
|
||||
<item>What exactly is stored in the environment depends on the machine the
|
||||
program is running on.
|
||||
<item>The function is only available as fastcall function, so it may only
|
||||
be used in presence of a prototype.
|
||||
</itemize>
|
||||
<tag/Availability/ISO 9899
|
||||
<tag/Example/None.
|
||||
</descrip>
|
||||
</quote>
|
||||
|
||||
|
||||
<sect1>getfirstdevice<label id="getfirstdevice"><p>
|
||||
|
||||
<quote>
|
||||
@ -3581,29 +3604,6 @@ while (dev != 255) {
|
||||
</quote>
|
||||
|
||||
|
||||
<sect1>getenv<label id="getenv"><p>
|
||||
|
||||
<quote>
|
||||
<descrip>
|
||||
<tag/Function/Return a value from the environment.
|
||||
<tag/Header/<tt/<ref id="stdlib.h" name="stdlib.h">/
|
||||
<tag/Declaration/<tt/char* __fastcall__ getenv (const char* name);/
|
||||
<tag/Description/The function searches the environment for an entry that
|
||||
matches <tt/name/ and returns its value. The environment consists of a list
|
||||
of strings in the form <tt/name=value/. If there is no match, <tt/getenv/
|
||||
returns <tt/NULL/.
|
||||
<tag/Notes/<itemize>
|
||||
<item>What exactly is stored in the environment depends on the machine the
|
||||
program is running on.
|
||||
<item>The function is only available as fastcall function, so it may only
|
||||
be used in presence of a prototype.
|
||||
</itemize>
|
||||
<tag/Availability/ISO 9899
|
||||
<tag/Example/None.
|
||||
</descrip>
|
||||
</quote>
|
||||
|
||||
|
||||
<sect1>getopt<label id="getopt"><p>
|
||||
|
||||
<quote>
|
||||
|
Loading…
x
Reference in New Issue
Block a user