Make strtok __fastcall__
git-svn-id: svn://svn.cc65.org/cc65/trunk@3514 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
412a1300f9
commit
c2140cdb08
2 changed files with 8 additions and 8 deletions
|
@ -6,7 +6,7 @@
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* */
|
/* */
|
||||||
/* (C) 1998-2004 Ullrich von Bassewitz */
|
/* (C) 1998-2005, Ullrich von Bassewitz */
|
||||||
/* Römerstrasse 52 */
|
/* Römerstrasse 52 */
|
||||||
/* D-70794 Filderstadt */
|
/* D-70794 Filderstadt */
|
||||||
/* EMail: uz@cc65.org */
|
/* EMail: uz@cc65.org */
|
||||||
|
@ -56,7 +56,7 @@ char* __fastcall__ strncpy (char* dest, const char* src, size_t count);
|
||||||
char* __fastcall__ strrchr (const char* s, int c);
|
char* __fastcall__ strrchr (const char* s, int c);
|
||||||
size_t __fastcall__ strspn (const char* s1, const char* s2);
|
size_t __fastcall__ strspn (const char* s1, const char* s2);
|
||||||
char* __fastcall__ strstr (const char* str, const char* substr);
|
char* __fastcall__ strstr (const char* str, const char* substr);
|
||||||
char* strtok (char* s1, const char* s2);
|
char* __fastcall__ strtok (char* s1, const char* s2);
|
||||||
size_t strxfrm (char* s1, const char* s2, size_t count);
|
size_t strxfrm (char* s1, const char* s2, size_t count);
|
||||||
void* __fastcall__ memchr (const void* mem, int c, size_t count);
|
void* __fastcall__ memchr (const void* mem, int c, size_t count);
|
||||||
int __fastcall__ memcmp (const void* p1, const void* p2, size_t count);
|
int __fastcall__ memcmp (const void* p1, const void* p2, size_t count);
|
||||||
|
|
|
@ -27,7 +27,7 @@ static char* Last = 0;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
char* strtok (register char* s1, const char* s2)
|
char* __fastcall__ strtok (register char* s1, const char* s2)
|
||||||
{
|
{
|
||||||
char c;
|
char c;
|
||||||
char* start;
|
char* start;
|
||||||
|
|
Loading…
Add table
Reference in a new issue