home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume38
/
libftp
/
part01
/
FtpNumber.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
|
1993-07-13
|
153 b
|
9 lines
#include "FtpLibrary.h"
int FtpNumber(char *Message)
{
return (Message[0] - '0') * 100 +
(Message[1] - '0') * 10 +
(Message[2] - '0') ;
}