version 1.54 | | version 1.55 |
---|
| | |
/* | | /* |
* static char *rcsid_commands_c = | | * static char *rcsid_commands_c = |
* "$Id: commands.c,v 1.54 2005/09/09 21:09:41 akirschbaum Exp $"; | | * "$Id: commands.c,v 1.55 2005/10/23 15:44:42 akirschbaum Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
| | |
void init_commands() | | void init_commands() |
{ | | { |
qsort((char *)Commands, CommandsSize, sizeof(CommArray_s), compare_A); | | qsort(Commands, CommandsSize, sizeof(CommArray_s), compare_A); |
qsort((char *)CommunicationCommands, CommunicationCommandSize, sizeof(CommArray_s), compare_A); | | qsort(CommunicationCommands, CommunicationCommandSize, sizeof(CommArray_s), compare_A); |
qsort((char *)WizCommands, WizCommandsSize, sizeof(CommArray_s), compare_A); | | qsort(NewServerCommands, NewServerCommandSize, sizeof(CommArray_s), compare_A); |
qsort((char *)NewServerCommands, NewServerCommandSize, sizeof(CommArray_s), compare_A); | | qsort(WizCommands, WizCommandsSize, sizeof(CommArray_s), compare_A); |
| | qsort(Socket_Commands, Socket_CommandsSize, sizeof(CommArray_s), compare_A); |
| | qsort(Socket2_Commands, Socket2_CommandsSize, sizeof(CommArray_s), compare_A); |
} | | } |
| | |
#ifndef tolower | | #ifndef tolower |