home *** CD-ROM | disk | FTP | other *** search
- /*--------------------------------------*/
- /* */
- /* LINTINP() */
- /* */
- /* Allows inputting of a long integer */
- /* from the keyboard. */
- /* */
- /*--------------------------------------*/
- long lintinp()
- {
- char s[10];
- long d,atol();
- scanf("%s",s);
- d=atol(s);
- return(d);
- }