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

编辑器/阅读器

开发平台:

C/C++

  1. /*lint -cdesm
  2.     Standard Library Definitions -- Desmet Version
  3.     This file contains declarations of standard library functions
  4.     for use with PC-Lint.  When provided to PC-Lint along with
  5.     other modules, the functions declared here are considered
  6.     defined with the properties given.  Of course, later redefinitions
  7.     may occur.
  8.     This file may not be complete.  Your compiler may contain
  9.     many other functions not declared here.
  10.     You may modify or augment this file so that it more
  11.     closely conforms to the library provided with your compiler.
  12.     The include file "stdio.h" is provided with your compiler.
  13.  */
  14. /*lint +fcu         character is unsigned */
  15. /*lint +fsu         strings are made of unsigned chars */
  16. /*lint -t4          tab = 4, for users of DeSmet SEE Editor*/
  17. /*lint -e612        allows static struct name {...}; which has a
  18.                     peculiar meaning in DeSmet C */
  19. /*lint -library  library flag -- Don't get upset if these externals
  20.               are not referenced or defined */
  21. #include "stdio.h"
  22. typedef void *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();
  33. int     creat();
  34. int     fclose();
  35. int     fprintf();
  36. int     fputc();
  37. int     fputs();
  38. int     fscanf();
  39. long    fseek();
  40. int     fwrite();
  41. long    lseek();
  42. UNIV    memcpy();
  43. UNIV    memmove();
  44. UNIV    memset();
  45. int     printf();
  46. int     puts();
  47. int     scanf();
  48. int     sprintf();
  49. int     sscanf();
  50. STRING  strcat();
  51. STRING  strcpy();
  52. STRING  strncat();
  53. STRING  strncpy();
  54. int     unlink();
  55. int     write();
  56. /*lint -fvr  End of routines that exhibit varying return mode */
  57. VOID    main( int, char**);  /* since main is not otherwise referenced */
  58. /*  At this point we wish to include prototypes for all functions
  59.     you are likely to use.  The easiest way to do this is to use
  60.     the prototypes that come with your compiler.
  61.     Some of the less-frequently-used include files have been commented
  62.     out to save processing time.  Also, for some compilers, there
  63.     can be an overlap in that some functions are included in more
  64.     than one header file.  Please include the omitted include files
  65.     if you need them.  Failure to include an appropriate header will
  66.     result in a Warning 526, ... "not defined" for any called function
  67.     whose prototype is contained in the header.
  68.  */
  69. /* #include "assert.h" */
  70. #include "ctype.h"
  71. /* #include "dos.h" */
  72. /* #include "float.h" */
  73. /* #include "limits.h" */
  74. /* #include "math.h" */
  75. /* #include "setjmp.h" */
  76. /* #include "stdarg.h" */
  77. /* #include "signal.h" */
  78. #include "stdlib.h"
  79. #include "string.h"
  80. /* The following functions are DeSmet specific (some are in pcio.a) */
  81. /* Furnished by the staff of "The C Gazette" */
  82. VOID    chain(STRING, STRING);
  83. char    ci();
  84. VOID    co(char);
  85. char    csts();
  86. VOID    dates(STRING);
  87. VOID    _doint(int);
  88. int     exec(STRING, STRING);
  89. int     _gets(STRING, int);
  90. char    _inb(unsigned);
  91. unsigned    _inw (unsigned);
  92. STRING  index(STRING, char);
  93. VOID    _lmove(unsigned, UNIV, unsigned, UNIV, unsigned);
  94. UNIV    _memory();
  95. int     moverlay(int);
  96. VOID    _move(unsigned, UNIV, UNIV);
  97. char    _os(char, unsigned);
  98. VOID    _outb(char, unsigned);
  99. VOID    _outw(unsigned, unsigned);
  100. int     overlay(int);
  101. int     overlay_close();
  102. int     overlay_init(STRING);
  103. char    _peek(UNIV, unsigned);
  104. char    _poke(char, UNIV, unsigned);
  105. STRING  rindex(STRING, char);
  106. VOID    scr_aputs (STRING, char);
  107. char    scr_ci();
  108. VOID    scr_co(char);
  109. char    scr_csts();
  110. VOID    scr_clr();
  111. VOID    scr_clrl();
  112. VOID    scr_cls();
  113. VOID    scr_cursoff();
  114. VOID    scr_curson();
  115. VOID    scr_rowcol();
  116. VOID    scr_scdn();
  117. VOID    scr_scrdn(int, int, int, int, int);
  118. VOID    scr_scup();
  119. VOID    scr_scrup(int, int, int, int, int);
  120. VOID    scr_setmode(char);
  121. VOID    scr_setup();
  122. char    scr_sinp();
  123. VOID    _setmem(UNIV, unsigned, char);
  124. VOID    _setsp(UNIV);
  125. unsigned    _showcs();
  126. unsigned    _showds();
  127. unsigned    _showsp();
  128. VOID    times(STRING);
  129. /* The following functions were added in DeSmet release 3.0
  130.    and do not appear to be mentioned in the .h files */
  131. int     chdir(STRING);
  132. int     chmod(STRING, int);
  133. int     dup(int);
  134. int     dup2(int);
  135. STRING  getdir (char, STRING);
  136. int     isatty(int);
  137. int     locking(int, int, int);
  138. int     mkdir (STRING);
  139. int     rename(STRING, STRING);
  140. STRING  strpbrk(STRING, STRING);
  141. /*lint -restore Restore error messages to original state.
  142.        This option is only necessary if flags of the form
  143.        -e... appear in this file. */