X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcc65%2Fstdfunc.h;h=33094eceeb8d370574a53eddd02def9ad941075c;hb=7aefd9b4e7b67908b7b3c38b6003c7f1a8d3ee2d;hp=809dc617bfb8cead95f9d8ed60b6a85ba87c79f1;hpb=02c26efdd3abe12b8376420567836b639883a143;p=cc65 diff --git a/src/cc65/stdfunc.h b/src/cc65/stdfunc.h index 809dc617b..33094ecee 100644 --- a/src/cc65/stdfunc.h +++ b/src/cc65/stdfunc.h @@ -6,10 +6,10 @@ /* */ /* */ /* */ -/* (C) 1998-2002 Ullrich von Bassewitz */ -/* Wacholderweg 14 */ -/* D-70597 Stuttgart */ -/* EMail: uz@musoftware.de */ +/* (C) 1998-2004 Ullrich von Bassewitz */ +/* Römerstrasse 52 */ +/* D-70794 Filderstadt */ +/* EMail: uz@cc65.org */ /* */ /* */ /* This software is provided 'as-is', without any expressed or implied */ @@ -50,12 +50,12 @@ -int IsStdFunc (const char* Name); +int FindStdFunc (const char* Name); /* Determine if the given function is a known standard function that may be - * called in a special way. + * called in a special way. If so, return the index, otherwise return -1. */ -void HandleStdFunc (struct FuncDesc* F, ExprDesc* lval); +void HandleStdFunc (int Index, struct FuncDesc* F, ExprDesc* lval); /* Generate code for a known standard function. */