home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / mbug / mbug103.arc / INT.C < prev    next >
Text File  |  1979-12-31  |  256b  |  7 lines

  1. /*
  2. ** integer manipulation
  3. */
  4. #define NOCCARGC
  5. getint(a) int *a; {return (*a);}    /* get integer from address a */
  6. putint(a, i) int *a, i; {*a = i;}    /* put integer i at address a */
  7.