mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +00:00
Added prototype for toascii(c);
git-svn-id: svn://svn.cc65.org/cc65/trunk@4424 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
7f865046f3
commit
38641d9af8
@ -6,8 +6,8 @@
|
|||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* (C) 1998-2004 Ullrich von Bassewitz */
|
/* (C) 1998-2009, Ullrich von Bassewitz */
|
||||||
/* Römerstrasse 52 */
|
/* Roemerstrasse 52 */
|
||||||
/* D-70794 Filderstadt */
|
/* D-70794 Filderstadt */
|
||||||
/* EMail: uz@cc65.org */
|
/* EMail: uz@cc65.org */
|
||||||
/* */
|
/* */
|
||||||
@ -77,6 +77,11 @@ int __fastcall__ isblank (int c); /* New in C99 */
|
|||||||
int __fastcall__ toupper (int c); /* Always external */
|
int __fastcall__ toupper (int c); /* Always external */
|
||||||
int __fastcall__ tolower (int c); /* Always external */
|
int __fastcall__ tolower (int c); /* Always external */
|
||||||
|
|
||||||
|
#if __CC65_STD__ >= __CC65_STD_CC65__
|
||||||
|
unsigned char __fastcall__ toascii (unsigned char c);
|
||||||
|
/* Convert a target specific character to ascii */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* When inlining of known function is enabled, overload most of the above
|
/* When inlining of known function is enabled, overload most of the above
|
||||||
|
Loading…
x
Reference in New Issue
Block a user