X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcc65%2Fstdfunc.h;h=33094eceeb8d370574a53eddd02def9ad941075c;hb=7aefd9b4e7b67908b7b3c38b6003c7f1a8d3ee2d;hp=cde09f6eb3ac7b65d053a1343beea2212f4b9c3a;hpb=53dd513176425872128ef26031d00952ef7a0628;p=cc65 diff --git a/src/cc65/stdfunc.h b/src/cc65/stdfunc.h index cde09f6eb..33094ecee 100644 --- a/src/cc65/stdfunc.h +++ b/src/cc65/stdfunc.h @@ -6,10 +6,10 @@ /* */ /* */ /* */ -/* (C) 1998 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 */ @@ -38,23 +38,24 @@ -#include "symtab.h" +/* cc65 */ #include "expr.h" +#include "symtab.h" /*****************************************************************************/ -/* Code */ +/* Code */ /*****************************************************************************/ -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 expent* lval); +void HandleStdFunc (int Index, struct FuncDesc* F, ExprDesc* lval); /* Generate code for a known standard function. */