home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume6
/
lookup.c++
/
testcmd.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-03-04
|
328 b
|
26 lines
#include <stream.h>
int a(const char *s)
{
cout << form("a: %s\n", s);
return 0;
}
int b(const char *s)
{
cout << form("b: %s\n", s);
return 0;
}
int c(const char *s)
{
cout << form("c: %s\n", s);
return 0;
}
int oops(const char *s)
{
cout << form("command %s unavailable\n", s);
return 0;
}