home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / DLLIB.ZIP / MONTHIS.DOC < prev    next >
Encoding:
Text File  |  1986-09-25  |  612 b   |  39 lines

  1.  
  2.  
  3.        NAME
  4.                monthis -- return a string pointer to name of month
  5.  
  6.        SYNOPSIS
  7.                char *monthis(month);
  8.                int month;      number of month 0-11
  9.  
  10.  
  11.  
  12.        DESCRIPTION
  13.        This function returns a pointer to a character string naming
  14.        the specified month.  The string is null terminated and may be
  15.        used directly or copied to another string.  Month 0 is January.
  16.  
  17.  
  18.  
  19.        EXAMPLE
  20.  
  21.  
  22.                printf("This is %s", monthis(7));
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.        This function is found in SMDLx.LIB for the Datalight Compiler.
  39.