+
+
+[
+][
+][
+][
+]
+
+
.
@@ -313,8 +323,6 @@ function.
[
-(incomplete)
-
]
@@ -661,9 +669,11 @@ communication.
[
][
][
+][
][
][
][
+][
][
][
][
@@ -674,8 +684,6 @@ communication.
][
-(incomplete)
-
]
@@ -718,7 +726,7 @@ communication.
[
-
+][
][
@@ -2930,9 +2938,9 @@ exits.
]
/* Hello World */
-#include
-#include
-#include
+#include <stdio.h>
+#include <unistd.h>
+#include <cc65.h>
int main(void)
{
printf("Hello World\n");
@@ -3450,6 +3458,77 @@ returns one of the constants
+getcurrentdevice
+
+
+
+/
+ or [ requiring a 'device' parameter.
+]
+-
+
+,
+[,
+][
+]
+dio_open (getcurrentdevice ());
+
+
+
+
+
+getcwd
+
+
+
+/
+
+- The function is only available as fastcall function, so it may only
+be used in presence of a prototype.
+
+
+
+
+
+getdevicedir
+
+
+
+/
+
+- The function is only available as fastcall function, so it may only
+be used in presence of a prototype.
+
+
,
+[,
+][,
+][
+]
+chdir (getdevicedir (device, buf, sizeof buf));
+
+
+
+
+
getenv
@@ -3473,6 +3552,63 @@ be used in presence of a prototype.
+getfirstdevice
+
+
+
+/
+
+-
+
+
,
+[,
+][
+]
+unsigned char dev = getfirstdevice ();
+while (dev != INVALID_DEVICE) {
+ printf ("%d\n", dev);
+ dev = getnextdevice (dev);
+ }
+
+
+
+
+
+getnextdevice
+
+
+
+/
+
+- The function is only available as fastcall function, so it may only
+be used in presence of a prototype.
+
+
,
+[,
+][
+]
+unsigned char dev = getfirstdevice ();
+while (dev != INVALID_DEVICE) {
+ printf ("%d\n", dev);
+ dev = getnextdevice (dev);
+ }
+
+
+
+
+
getopt
@@ -6284,6 +6420,34 @@ See
+strncasecmp
+
+
+
+/
+
+- The function is only available as fastcall function, so it may only
+be used in presence of a prototype.
+
- The function is not available in strict ANSI mode.
+
+
,
+[,
+][,
+][,
+][
+]
+
+
+
strncat
@@ -6377,6 +6541,34 @@ strncpy (hello, "Hello world!\n", sizeof hello - 1)[5] = '\0';
+strnicmp
+
+
+
+/
+
+- The function is only available as fastcall function, so it may only
+be used in presence of a prototype.
+
- The function is not available in strict ANSI mode.
+
+
,
+[,
+][,
+][,
+][
+]
+
+
+
strqtok