Document and simplify the ltoa() / my_ltoa() distinction
The function provided (either by #define to the module table or directly in the case of scr-bx.c) is called my_ltoa(), and the #define in irc_std.h aliases this to ltoa().
This commit is contained in:
@@ -97,7 +97,7 @@ int get_int_var(int var)
|
||||
return 1;
|
||||
}
|
||||
|
||||
char *ltoa (long foo)
|
||||
char *my_ltoa(long foo)
|
||||
{
|
||||
static char buffer[BIG_BUFFER_SIZE/8+1];
|
||||
char *pos = buffer + BIG_BUFFER_SIZE/8-1;
|
||||
|
||||
Reference in New Issue
Block a user