home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
vol_200
/
272_01
/
monthis.doc
< prev
next >
Wrap
Text File
|
1987-07-17
|
705b
|
42 lines
NAME
monthis -- return a string pointer to name of month
SYNOPSIS
char *monthis(month);
int month; number of month 0-11
DESCRIPTION
This function returns a pointer to a character string naming
the specified month. The string is null terminated and may be
used directly or copied to another string. Month 0 is January.
EXAMPLE
printf("This is %s", monthis(7));
/* printout will be:
This is August
*/
This function is found in SMDLx.LIB for the Datalight Compiler.