home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 1 / FishNMoreVol1.bin / more / code_examples / librar / lintinp.c < prev    next >
Text File  |  1989-02-08  |  384b  |  17 lines

  1. /*--------------------------------------*/
  2. /*                    */
  3. /*              LINTINP()        */
  4. /*                    */
  5. /* Allows inputting of a long integer    */
  6. /* from the keyboard.            */
  7. /*                    */
  8. /*--------------------------------------*/
  9. long lintinp()
  10. {
  11.         char s[10];
  12.         long d,atol();
  13.     scanf("%s",s);
  14.     d=atol(s);
  15.     return(d);
  16. }
  17.