home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 163_01 / ccargc.c < prev    next >
Text File  |  1988-01-31  |  384b  |  10 lines

  1. /*
  2. ** fetch argument count from DL register
  3. */
  4. CCARGC() {
  5. #asm
  6.        MOV AL,DL ;move argument count into function return register
  7.        CBW ;convert to 16 bit value
  8. #endasm
  9.   }
  10.