1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-05 15:53:13 +02:00
This commit is contained in:
stskeeps
2000-08-19 13:59:45 +00:00
parent 7bc10582c5
commit cd277778a3
+4 -4
View File
@@ -62,7 +62,7 @@ static char nsprefix = 0;
** the old. 'name' is now assumed to be a null terminated
** string and the search is the for server and user.
*/
aClient *find_client(name, cptr)
aClient inline *find_client(name, cptr)
char *name;
aClient *cptr;
{
@@ -75,7 +75,7 @@ aClient *find_client(name, cptr)
return cptr;
}
aClient *find_nickserv(name, cptr)
aClient inline *find_nickserv(name, cptr)
char *name;
aClient *cptr;
{
@@ -99,7 +99,7 @@ aClient *find_nickserv(name, cptr)
** the old. 'name' is now assumed to be a null terminated
** string.
*/
aClient *find_server(name, cptr)
aClient inline *find_server(name, cptr)
char *name;
aClient *cptr;
{
@@ -112,7 +112,7 @@ aClient *find_server(name, cptr)
}
aClient *find_name(name, cptr)
aClient inline *find_name(name, cptr)
char *name;
aClient *cptr;
{