From: cuz Date: Thu, 2 Oct 2003 22:01:54 +0000 (+0000) Subject: More functions X-Git-Tag: V2.12.0~1300 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f783f6d3c163bbc822056e17434b27e9c6d6118b;p=cc65 More functions git-svn-id: svn://svn.cc65.org/cc65/trunk@2471 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/doc/funcref.sgml b/doc/funcref.sgml index 6659fd790..75e3a2782 100644 --- a/doc/funcref.sgml +++ b/doc/funcref.sgml @@ -187,6 +187,11 @@ function.

+ + + + +

@@ -284,16 +289,16 @@ function. - + - - + + - + @@ -314,6 +319,20 @@ function.

+ +

@@ -2212,6 +2231,28 @@ used in presence of a prototype. +localeconv

+ + + +/ + +cc65 supports only the "C" locale, so even after setting a new locale +using /, the structure returned will +always be the same. + + + + + + malloc

@@ -2554,6 +2595,30 @@ the program terminates. +setlocale

+ + + +/ + +The function is only available as fastcall function, so it may only +be used in presence of a prototype. +cc65 supports only the "C" locale, so calling this function to set a +different locale has no effect. + +, + + + + + signal

@@ -2642,6 +2707,32 @@ be used in presence of a prototype. +strcasecmp

+ + + +/ + +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. + +, +, + + + + + strcat

@@ -2691,6 +2782,58 @@ be used in presence of a prototype. +strcmp

+ + + +/ + +The function is only available as fastcall function, so it may only +be used in presence of a prototype. + +, +, + + + + + +strcoll

+ + + +/ +/. It returns a value that is less than zero if +The function is only available as fastcall function, so it may only +be used in presence of a prototype. + +, +, +, + + + + + strcpy

@@ -2723,6 +2866,32 @@ strcpy (hello, "Hello world!\n"); +stricmp

+ + + +/ + +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. + +, +, + + + + + strlen