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

编辑器/阅读器

开发平台:

C/C++

  1. /*lint
  2.     Standard Library Definitions -- Generic 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. #define VOID void       /* compiler-independent void */
  26. typedef FILE *STREAM;   /* a universal file designator */
  27. /*lint +fvr
  28.   The following functions exhibit variable return modes.
  29.   That is, they may equally-usefully be called for a value
  30.   as called just for their effects.
  31.  */
  32. int     close(int);
  33. int     creat( CSTRING, int );
  34. int     fclose(STREAM);
  35. int     fputc( int, STREAM );
  36. int     fputs( STRING, STREAM );
  37. int     fseek( STREAM, long, int );
  38. int     fwrite( UNIV, int, int, STREAM );
  39. long    lseek( int, long, int );
  40. int     puts( STRING );
  41. STRING  strcat( STRING, STRING );
  42. STRING  strcpy( STRING, STRING );
  43. STRING  strncat( STRING, STRING, int);
  44. STRING  strncpy( STRING, STRING, int);
  45. int     unlink( STRING );
  46. int     write( int, UNIV, int);
  47. /*lint +fva1  arguments vary after the first */
  48. int     printf(STRING);
  49. int     scanf(STRING);
  50. /*lint +fva2  arguments vary after the second */
  51. int     fprintf(STREAM, CSTRING);
  52. int     fscanf(STREAM, STRING);
  53. int     sprintf(STRING, STRING);
  54. int     sscanf(STRING, STRING);
  55. /*lint -fva  end of varying arguments */
  56. double  atof(STRING);
  57. /* atoi returns long in some libraries and int in others;
  58.    In the latter case, atol is also supplied.
  59.    Choose the one correct for your system.
  60. long    atoi(STRING);
  61. int     atoi(STRING);
  62. long    atol(STRING);
  63.  */
  64. UNIV    calloc(unsigned, unsigned);
  65. VOID    exit(int);
  66. int     fgetc(STREAM);
  67. STRING  fgets( STRING, int, STREAM );
  68. STREAM  fopen( STRING, STRING );
  69. int     fread( UNIV, int, int, STREAM );
  70. VOID    free(UNIV);
  71. long    ftell( STREAM );
  72. STRING  gets( UNIV );
  73. int     isalnum(char);
  74. int     isalpha(char);
  75. int     isascii(char);
  76. int     isdigit(char);
  77. int     islower(char);
  78. int     isprint(char);
  79. int     isspace(char);
  80. int     isupper(char);
  81. VOID    main( int, char**);
  82. UNIV    malloc(unsigned);
  83. int     open( STRING, int );
  84. int     read( int, UNIV, int );
  85. int     strcmp( STRING, STRING );
  86. int     strlen( STRING );
  87. int     strncmp( STRING, STRING, int );
  88. int     tolower(char);
  89. int     toupper(char);
  90. /*  Math functions; if you need them, #define math 1  */
  91. #define math 0
  92. #if math
  93. double  acos(double);
  94. double  asin(double);
  95. double  atan(double);
  96. double  ceil(double);
  97. double  cos(double);
  98. double  exp(double);
  99. double  exp10(double);
  100. double  fabs(double);
  101. double  floor(double);
  102. double  log(double);
  103. double  log10(double);
  104. double  pow(double, double);
  105. double  sin(double);
  106. double  sqrt(double);
  107. double  tan(double);
  108. #endif
  109. /*lint -restore Restore error messages to state last "-save"d
  110.        This option is only necessary if flags of the form
  111.        -e... appear after the -save above and to inhibit their
  112.        propogation to later files */