sl-c86.c
上传用户:filter2008
上传日期:2010-03-12
资源大小:2959k
文件大小:4k
源码类别:

编辑器/阅读器

开发平台:

C/C++

  1. /*lint -cc86
  2.     Standard Library Definitions -- Computer Innovations C86 Version
  3.     With this variation of the standard library description,
  4.     library headers are assumed to NOT contain prototypes.
  5.     (If your compiler supports prototypes use a file similar
  6.     to those having names of the form: sl-xxx.lnt).
  7.     This file contains declarations of standard library functions
  8.     for use with PC-Lint.  When provided to PC-Lint along with
  9.     other modules, the functions declared here are considered
  10.     defined with the properties given.
  11.     This file may not be complete.  Your compiler may contain
  12.     many other functions not declared here.
  13.     You may modify or augment this file so that it more
  14.     closely conforms to the library provided with your compiler.
  15.     The include file "stdio.h" is provided with your compiler.
  16.  */
  17. /*lint -e746  don't insist on a prototype for each call */
  18. /*lint -save  save the current error suppression state */
  19. /*lint -library  library flag -- Don't get upset if these externals
  20.               are not referenced or defined */
  21. #include "stdio.h"
  22. typedef char *UNIV;     /* universal pointer */
  23. typedef char *STRING;   /* string */
  24. typedef const char *CSTRING;   /* constant string */
  25. /*  If your compiler supports the void type replace the following
  26.     with #define VOID void.
  27.  */
  28. #define VOID            /* function returns nothing */
  29. typedef FILE *STREAM;   /* a universal file designator */
  30. /*lint +fvr
  31.   The following functions exhibit variable return modes.
  32.   That is, they may equally-usefully be called for a value
  33.   as called just for their effects.
  34.  */
  35. int     close(int);
  36. int     creat( CSTRING, int );
  37. int     fclose(STREAM);
  38. int     fputc( int, STREAM );
  39. int     fputs( STRING, STREAM );
  40. long    fseek( STREAM, long, int );
  41. int     fwrite( UNIV, int, int, STREAM );
  42. long    lseek( int, long, int );
  43. int     ltos( long, STRING, int );
  44. int     puts( STRING );
  45. STRING  strcat( STRING, STRING );
  46. STRING  strcpy( STRING, STRING );
  47. STRING  strncat( STRING, STRING, int);
  48. STRING  strncpy( STRING, STRING, int);
  49. int     unlink( STRING );
  50. int     write( int, UNIV, int);
  51. /*lint +fva1  arguments vary after the first */
  52. int     printf(STRING);
  53. int     scanf(STRING);
  54. /*lint +fva2  arguments vary after the second */
  55. int     fprintf(STREAM, CSTRING);
  56. int     fscanf(STREAM, STRING);
  57. int     sprintf(STRING, STRING);
  58. int     sscanf(STRING, STRING);
  59. /*lint -fva  end of varying arguments */
  60. STREAM stdin, stdout, stderr;
  61. UNIV    alloc(unsigned);
  62. double  atof(STRING);
  63. long    atoi(STRING);
  64. #ifdef _C86_BIG
  65. int     bdos(int, UNIV);
  66. #else
  67. int     bdos(int, int);
  68. #endif
  69. UNIV    calloc(unsigned, unsigned);
  70. VOID    exit(int);
  71. int     fgetc(STREAM);
  72. STRING  fgets( STRING, int, STREAM );
  73. STREAM  fopen( STRING, STRING );
  74. int     fread( UNIV, int, int, STREAM );
  75. VOID    free(UNIV);
  76. long    ftell( STREAM );
  77. STRING  gets( UNIV, int );
  78. int     isalnum(char);
  79. int     isalpha(char);
  80. int     isascii(char);
  81. int     isdigit(char);
  82. int     islower(char);
  83. int     isprint(char);
  84. int     isspace(char);
  85. int     isupper(char);
  86. VOID    main( int, char**);
  87. UNIV    malloc(unsigned);
  88. VOID    movmem( UNIV, UNIV, unsigned );
  89. int     open( STRING, int );
  90. int     read( int, UNIV, int );
  91. UNIV    realloc( UNIV, unsigned );
  92. int     strcmp( STRING, STRING );
  93. int     strlen( STRING );
  94. int     strncmp( STRING, STRING, int );
  95. int     tolower(char);
  96. int     toupper(char);
  97. /*  Math functions; if you need them, #define math 1  */
  98. #define math 0
  99. #if math
  100. double  ceil(double);
  101. double  exp(double);
  102. double  exp10(double);
  103. double  fabs(double);
  104. double  floor(double);
  105. double  log(double);
  106. double  log10(double);
  107. double  pow(double, double);
  108. double  sqrt(double);
  109. #endif
  110. /*lint -restore Restore error messages to state last "-save"d
  111.        This option is only necessary if flags of the form
  112.        -e... appear after the -save above and to inhibit their
  113.        propogation to later files */