]> git.sur5r.net Git - cc65/commitdiff
Sorted
authorStefan <stefan.haubenthal@gmail.com>
Wed, 7 Feb 2018 02:07:30 +0000 (03:07 +0100)
committerStefan <stefan.haubenthal@gmail.com>
Wed, 7 Feb 2018 02:07:30 +0000 (03:07 +0100)
doc/funcref.sgml

index a442f5e085300b20b9218acf25d73b39581a04ed..83fc36a6b0cb500deb5dc6cc6d6a595860e0f515 100644 (file)
@@ -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>