home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 September
/
Simtel20_Sept92.cdr
/
msdos
/
turbo_c
/
tc130.arc
/
MONTHIS.DOC
< prev
next >
Wrap
Text File
|
1987-08-20
|
703b
|
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 1 is January.
EXAMPLE
printf("This is %s", monthis(7));
/* printout will be:
This is August
*/
This function is found in SMTCx.LIB for the Turbo-C Compiler.