gb_io.w
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:21k
源码类别:

通讯编程

开发平台:

Visual C++

  1. % This file is part of the Stanford GraphBase (c) Stanford University 1993
  2. @i boilerplate.w %<< legal stuff: PLEASE READ IT BEFORE MAKING ANY CHANGES!
  3. deftitle{GB_,IO}
  4. @* Introduction. This is {sc GB_,IO}, the input/output module used
  5. by all GraphBase routines to access data~files. It doesn't actually do
  6. any output; but somehow `input/output' sounds like a more useful title
  7. than just `input'.
  8. All files of GraphBase data are designed to produce identical results on
  9. almost all existing computers and operating systems. Each line of each file
  10. contains at most 79 characters. Each character is either a blank or a
  11. digit or an uppercase letter or a lowercase letter or a standard punctuation
  12. mark. Blank characters at the end of each line are ``invisible''; that is,
  13. they have no perceivable effect. Hence identical results will be obtained on
  14. record-oriented systems that pad every line with blanks.
  15. The data is carefully sum-checked so that defective input files have little
  16. chance of being accepted.
  17. @ Changes might be needed when these routines are ported to different
  18. systems. Sections of the program that are most likely to require such changes
  19. are listed under `system dependencies' in the index.
  20. A validation program is provided so that installers can tell if {sc GB_,IO}
  21. is working properly. To make the test, simply run .{test_io}.
  22. @(test_io.c@>=
  23. #include "gb_io.h"
  24.   /* all users of {sc GB_,IO} should include this header file */
  25. #define exit_test(m) /* we invoke this macro if something goes wrong */
  26.  {@+fprintf(stderr,"%s!n(Error code = %ld)n",m,io_errors);@+return -1;@+}
  27. @t2@>@/
  28. int main()
  29. {
  30.   @<Test the |gb_open| routine; exit if there's trouble@>;
  31.   @<Test the sample data lines; exit if there's trouble@>;
  32.   @<Test the |gb_close| routine; exit if there's trouble@>;
  33.   printf("OK, the gb_io routines seem to work!n");
  34.   return 0;
  35. }
  36. @ The external variable |io_errors| mentioned in the previous section
  37. will be set nonzero if any anomalies are detected. Errors won't occur
  38. in normal use of GraphBase programs, so no attempt has been made to
  39. provide a user-friendly way to decode the nonzero values that
  40. |io_errors| might assume.  Information is simply gathered in binary
  41. form; system wizards who might need to do a bit of troubleshooting
  42. should be able to decode |io_errors| without great pain.
  43. @d cant_open_file 0x1 /* bit set in |io_errors| if |fopen| fails */
  44. @d cant_close_file 0x2 /* bit set if |fclose| fails */
  45. @d bad_first_line 0x4 /* bit set if the data file's first line isn't legit */
  46. @d bad_second_line 0x8 /* bit set if the second line doesn't pass muster */
  47. @d bad_third_line 0x10 /* bit set if the third line is awry */
  48. @d bad_fourth_line 0x20 /* guess when this bit is set */
  49. @d file_ended_prematurely 0x40 /* bit set if |fgets| fails */
  50. @d missing_newline 0x80 /* bit set if line is too long or |'n'| is missing */
  51. @d wrong_number_of_lines 0x100 /* bit set if the line count is wrong */
  52. @d wrong_checksum 0x200 /* bit set if the checksum is wrong */
  53. @d no_file_open 0x400 /* bit set if user tries to close an unopened file */
  54. @d bad_last_line 0x800 /* bit set if final line has incorrect form */
  55. @ The CEE/ code for {sc GB_,IO} doesn't have a main routine; it's just a
  56. bunch of subroutines to be incorporated into programs at a higher level
  57. via the system loading routine. Here is the general outline of .{gb_io.c}:
  58. @p
  59. @<Header files to include@>@;
  60. @h
  61. @<External declarations@>@;
  62. @<Private declarations@>@;
  63. @<Internal functions@>@;
  64. @<External functions@>
  65. @ Every external variable is declared twice in this .{CWEB} file:
  66. once for {sc GB_,IO} itself (the ``real'' declaration for storage
  67. allocation purposes) and once in .{gb_io.h} (for cross-references
  68. by {sc GB_,IO} users).
  69. @<External declarations@>=
  70. long io_errors; /* record of anomalies noted by {sc GB_,IO} routines */
  71. @ @(gb_io.h@>=
  72. @<Header...@>@;
  73. extern long io_errors;
  74.  /* record of anomalies noted by {sc GB_,IO} routines */
  75. @ We will stick to standard CEE/-type input conventions. We'll also have
  76. occasion to use some of the standard string operations.
  77. @<Header...@>=
  78. #include <stdio.h>
  79. #ifdef SYSV
  80. #include <string.h>
  81. #else
  82. #include <strings.h>
  83. #endif
  84. @* Inputting a line. The {sc GB_,IO} routines get their input from
  85. an array called |buffer|. This array is internal to {sc
  86. GB_,IO}---its contents are hidden from user programs. We make it 81
  87. characters long, since the data is supposed to have at most 79
  88. characters per line, followed by newline and null.
  89. @<Private...@>=
  90. static char buffer[81]; /* the current line of input */
  91. static char *cur_pos=buffer; /* the current character of interest */
  92. static FILE *cur_file; /* current file, or |NULL| if none is open */
  93. @ Here's a basic subroutine to fill the |buffer|. The main feature of interest
  94. is the removal of trailing blanks. We assume that |cur_file| is open.
  95. Notice that a line of 79 characters (followed by |'n'|) will just fit into
  96. the buffer, and will cause no errors. A line of 80 characters will
  97. be split into two lines and the |missing_newline|
  98. message will occur, because of the way |fgets| is defined. A |missing_newline|
  99. error will also occur if the file ends in the middle of a line, or if
  100. a null character (|''|) occurs within a line.
  101. @<Internal...@>=
  102. static void fill_buf()
  103. {@+register char *p;
  104.   if (!fgets(buffer,sizeof(buffer),cur_file)) {
  105.     io_errors |= file_ended_prematurely; buffer[0]=more_data=0;
  106.   }
  107.   for (p=buffer; *p; p++) ; /* advance to first null character */
  108.   if (p--==buffer || *p!='n') {
  109.     io_errors |= missing_newline; p++;
  110.   }
  111.   while (--p>=buffer && *p==' ') ; /* move back over trailing blanks */
  112.   *++p='n'; *++p=0; /* newline and null are always present at end of line */
  113.   cur_pos=buffer; /* get ready to read |buffer[0]| */
  114. }
  115. @* Checksums. Each data file has a ``magic number,'' which is defined to be
  116. $$biggl(sum_l 2^l c_lbiggr) bmod p,.$$
  117. Here $p$ is a large prime number, and $c_l$ denotes the internal code
  118. corresponding to the $l$th-from-last
  119. data character read (including newlines but not nulls).
  120. The ``internal codes'' $c_l$ are computed in a system-independent way:
  121. Each character |c| in the actual encoding scheme being used has a
  122. corresponding |icode|, which is the same on all systems. For example,
  123. the |icode| of |'0'| is zero, regardless of whether |'0'| is actually
  124. represented in ASCII or EBCDIC or some other scheme. (We assume that
  125. every modern computer system is capable of printing at least 95
  126. different characters, including a blank space.)
  127. We will accept a data file as error-free if it has the correct number of
  128. lines and ends with the proper magic number.
  129. @<Private...@>=
  130. static char icode[256]; /* mapping of characters to internal codes */
  131. static long checksum_prime=(1L<<30)-83;
  132.   /* large prime such that $2p+|unexpected_char|$ won't overflow */
  133. static long magic; /* current checksum value */
  134. static long line_no; /* current line number in file */
  135. static long final_magic; /* desired final magic number */
  136. static long tot_lines; /* total number of data lines */
  137. static char more_data; /* is there data still waiting to be read? */
  138. @ The |icode| mapping is defined by a single string, |imap|, such that
  139. character |imap[k]| has |icode| value~|k|. There are 96 characters
  140. in |imap|, namely the 94 standard visible ASCII codes plus space
  141. and newline. If EBCDIC code is used instead of ASCII, the
  142. cents sign rlap{.{kern.05em/}}.c should take the place of single-left-quote
  143. .{char``}, and .{char5}~should take the place of/~.{char`~}.
  144. All characters that don't appear in |imap| are given the same |icode|
  145. value, called |unexpected_char|. Such characters should be avoided in
  146. GraphBase files whenever possible. (If they do appear, they can still
  147. get into a user's data, but we don't distinguish them from each other
  148. for checksumming purposes.)
  149. The |icode| table actually plays a dual role, because we've rigged it so that
  150. codes 0--15 come from the characters |"0123456789ABCDEF"|. This facilitates
  151. conversion of decimal and hexadecimal data. We can also use it for
  152. radices higher than 16.
  153. @d unexpected_char 127 /* default |icode| value */
  154. @<Private...@>=
  155. static char *imap="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ
  156. abcdefghijklmnopqrstuvwxyz_^~&@@,;.:?!%#$+-*/|\<=>()[]{}`'" n";
  157. @ Users of {sc GB_,IO} can look at the |imap|, but they can't change it.
  158. @<External fun...@>=
  159. char imap_chr(d)
  160.   long d;
  161. {
  162.   return d<0 || d>strlen(imap)? '': imap[d];
  163. }
  164. @#
  165. long imap_ord(c)
  166.   char c;
  167. {
  168.   @<Make sure that |icode| has been initialized@>;
  169.   return (c<0||c>255)? unexpected_char: icode[c];
  170. }
  171. @ @(gb_io.h@>=
  172. #define unexpected_char @tquad@> 127
  173. extern char imap_chr(); /* the character that maps to a given character */
  174. extern long imap_ord(); /* the ordinal number of a given character */
  175. @ @<Make sure that |icode| has been initialized@>=
  176. if (!icode['1']) icode_setup();
  177. @ @<Internal...@>=
  178. static void icode_setup()
  179. {@+register long k;
  180.   register char *p;
  181.   for (k=0;k<256;k++) icode[k]=unexpected_char;
  182.   for (p=imap,k=0; *p; p++,k++) icode[*p]=k;
  183. }
  184. @ Now we're ready to specify some external subroutines that do
  185. input.  Calling |gb_newline()| will read the next line of
  186. data into |buffer| and update the magic number accordingly.
  187. @(gb_io.h@>=
  188. extern void gb_newline(); /* advance to next line of the data file */
  189. extern long new_checksum(); /* compute change in magic number */
  190. @ Users can compute checksums as |gb_newline| does, but they can't
  191. change the (private) value of |magic|.
  192. @<External f...@>=
  193. long new_checksum(s,old_checksum)
  194.   char *s; /* a string */
  195.   long old_checksum;
  196. {@+register long a=old_checksum;
  197.   register char*p;
  198.   for (p=s; *p; p++)
  199.     a=(a+a+imap_ord(*p)) % checksum_prime;
  200.   return a;
  201. }
  202. @ The magic checksum is not affected by lines that begin with .*.
  203. @<External f...@>=
  204. void gb_newline()
  205. {
  206.   if (++line_no>tot_lines) more_data=0;
  207.   if (more_data) {
  208.     fill_buf();
  209.     if (buffer[0]!='*')
  210.       magic=new_checksum(buffer,magic);
  211.   }
  212. }
  213. @ Another simple routine allows a user to read (but not write) the
  214. variable |more_data|.
  215. @(gb_io.h@>=
  216. extern long gb_eof(); /* has the data all been read? */
  217. @ @<External f...@>=
  218. long gb_eof() { return !more_data; }
  219. @* Parsing a line. The user can input characters from the buffer in several
  220. ways. First, there's a basic |gb_char()| routine, which returns
  221. a single character. The character is |'n'| if the last character on the
  222. line has already been read (and it continues to be |'n'| until the user calls
  223. |gb_newline|).
  224. The current position in the line, |cur_pos|, always advances when |gb_char|
  225. is called, unless |cur_pos| was already at the end of the line.
  226. There's also a |gb_backup()| routine, which moves |cur_pos| one place
  227. to the left unless it was already at the beginning.
  228. @(gb_io.h@>=
  229. extern char gb_char(); /* get next character of current line, or |'n'| */
  230. extern void gb_backup(); /* move back ready to scan a character again */
  231. @ @<External f...@>=
  232. char gb_char()
  233. {
  234.   if (*cur_pos) return (*cur_pos++);
  235.   return 'n';
  236. }
  237. @#
  238. void gb_backup()
  239. {
  240.   if (cur_pos>buffer)
  241.     cur_pos--;
  242. }
  243. @ There are two ways to read numerical data. The first, |gb_digit(d)|,
  244. expects to read a single character in radix~|d|, using |icode| values
  245. to specify digits greater than~9. (Thus, for example, |'A'| represents
  246. the hexadecimal digit for decimal~10.)
  247. If the next character is a valid |d|-git,
  248. |cur_pos| moves to the next character and the numerical value is returned.
  249. Otherwise |cur_pos| stays in the same place and $-1$ is returned.
  250. The second routine, |gb_number(d)|, reads characters and forms an
  251. unsigned radix-|d| number until the first non-digit is encountered.
  252. The resulting number is returned; it is zero if no digits were found.
  253. No errors are possible with this routine, because it uses
  254. |unsigned long| arithmetic.
  255. @(gb_io.h@>=
  256. extern long gb_digit(); /* |gb_digit(d)| reads a digit between 0 and |d-1| */
  257. extern unsigned long gb_number(); /* |gb_number(d)| reads a radix-|d| number */
  258. @ The value of |d| should be at most 127, if users want their programs to be
  259. portable, because CEE/ does not treat larger |char| values in a
  260. well-defined manner. In most applications, |d| is of course either 10 or 16.
  261. @<External f...@>=
  262. long gb_digit(d)
  263.     char d;
  264. {
  265.   icode[0]=d; /* make sure |''| is a nondigit */
  266.   if (imap_ord(*cur_pos)<d) return icode[*cur_pos++];
  267.   return -1;
  268. }
  269. @#
  270. unsigned long gb_number(d)
  271.     char d;
  272. {@+register unsigned long a=0;
  273.   icode[0]=d; /* make sure |''| is a nondigit */
  274.   while (imap_ord(*cur_pos)<d)
  275.     a=a*d+icode[*cur_pos++];
  276.   return a;
  277. }
  278. @ The final subroutine for fetching data is |gb_string(p,c)|, which
  279. stores a null-terminated string into locations starting at~|p|.
  280. The string starts at |cur_pos| and ends just before the first appearance
  281. of character |c|. If |c=='n'|, the string will stop at the end of the line.
  282. If |c| doesn't appear in the buffer at or after |cur_pos|, the last character
  283. of the string will be the |'n'| that is always inserted at the end
  284. of a line, unless the entire line has already been read. (If the entire
  285. line has previously been read, the empty string is always returned.)
  286. After the string has been copied, |cur_pos| advances past it.
  287. In order to use this routine safely, the user should first check that
  288. there is room to store up to 81 characters beginning at location~|p|.
  289. A suitable place to put the result, called |str_buf|, is provided
  290. for the user's convenience.
  291. The location following the stored string is returned. Thus, if the
  292. stored string has length~|l| (not counting the null character that is
  293. stored at the end), the value returned will be |p+l+1|.
  294. @(gb_io.h@>=
  295. #define STR_BUF_LENGTH 160
  296. extern char str_buf[]; /* safe place to receive output of |gb_string| */
  297. extern char *gb_string(); /* |gb_string(p,c)| reads a string delimited by |c|
  298.   into bytes starting at |p| */
  299. @ @d STR_BUF_LENGTH 160
  300. @<External f...@>=
  301. char str_buf[STR_BUF_LENGTH]; /* users can put strings here if they wish */
  302. char *gb_string(p,c)
  303.     char *p; /* where to put the result */
  304.     char c; /* character following the string */
  305. {
  306.   while (*cur_pos && *cur_pos!=c)
  307.     *p++=*cur_pos++;
  308.   *p++=0;
  309.   return p;
  310. }
  311. @ Here's how we test those routines in .{test_io}: The first line of test
  312. data consists of 79 characters, beginning with 64 zeroes and ending with
  313. `.{123456789ABCDEF}'. The second line is completely blank. The third
  314. and final line says `.{Oops:(intentional mistake)}'.
  315. @<Test the sample data lines...@>=
  316. if (gb_number(10)!=123456789)
  317.   io_errors |= 1L<<20; /* decimal number not working */
  318. if (gb_digit(16)!=10)
  319.   io_errors |= 1L<<21; /* we missed the .A following the decimal number */
  320. gb_backup();@+ gb_backup(); /* get set to read `.{9A}' again */
  321. if (gb_number(16)!=0x9ABCDEF)
  322.   io_errors |= 1L<<22; /* hexadecimal number not working */
  323. gb_newline(); /* now we should be scanning a blank line */
  324. if (gb_char()!='n')
  325.   io_errors |= 1L<<23; /* newline not inserted at end */
  326. if (gb_char()!='n')
  327.   io_errors |= 1L<<24; /* newline not implied after end */
  328. if (gb_number(60)!=0)
  329.   io_errors |= 1L<<25; /* number should stop at null character */
  330. {@+char temp[100];
  331.   if (gb_string(temp,'n')!=temp+1)
  332.     io_errors |= 1L<<26; /* string should be null after end of line */
  333.   gb_newline();
  334.   if (gb_string(temp,':')!=temp+5 || strcmp(temp,"Oops"))
  335.     io_errors |= 1L<<27; /* string not read properly */
  336. }
  337. if (io_errors)
  338.   exit_test("Sorry, it failed. Look at the error code for clues");
  339. if (gb_digit(10)!=-1) exit_test("Digit error not detected");
  340. if (gb_char()!=':')
  341.   io_errors |= 1L<<28; /* lost synch after |gb_string| and |gb_digit| */
  342. if (gb_eof())
  343.   io_errors |= 1L<<29; /* premature end-of-file indication */
  344. gb_newline();
  345. if (!gb_eof())
  346.   io_errors |= 1L<<30; /* postmature end-of-file indication */
  347. @* Opening a file. The call |gb_raw_open("foo")| will open file |"foo"| and
  348. initialize the checksumming process. If the file cannot be opened,
  349. |io_errors| will be set to |cant_open_file|, otherwise
  350. |io_errors| will be initialized to zero.
  351. The call |gb_open("foo")| is a stronger version of |gb_raw_open|, which
  352. is used for standard GraphBase data files like |"words.dat"| to make
  353. doubly sure that they have not been corrupted. It returns the current value
  354. of |io_errors|, which will be nonzero if any problems were detected
  355. at the beginning of the file.
  356. @<Test the |gb_open| routine...@>=
  357. if (gb_open("test.dat")!=0)
  358.   exit_test("Can't open test.dat");
  359. @ @d gb_raw_open gb_r_open /* abbreviation for Procrustean external linkage */
  360. @(gb_io.h@>=
  361. #define gb_raw_open gb_r_open
  362. extern void gb_raw_open(); /* open a file for GraphBase input */
  363. extern long gb_open(); /* open a GraphBase data file; return 0 if OK */
  364. @ @<External f...@>=
  365. void gb_raw_open(f)
  366.     char *f;
  367. {
  368.   @<Make sure that |icode|...@>;
  369.   @<Try to open |f|@>;
  370.   if (cur_file) {
  371.     io_errors=0;
  372.     more_data=1;
  373.     line_no=magic=0;
  374.     tot_lines=0x7fffffff; /* allow ``infinitely many'' lines */
  375.     fill_buf();
  376.   }@+else io_errors=cant_open_file;
  377. }
  378. @ Here's a possibly system-dependent part of the code: We try first to
  379. open the data file by using the file name itself as the path name;
  380. failing that, we try to prefix the file name with the name of the
  381. standard directory for GraphBase data, if the program has been compiled
  382. with |DATA_DIRECTORY| defined.
  383. @^system dependencies@>
  384. @<Try to open |f|@>=
  385. cur_file=fopen(f,"r");
  386. @^system dependencies@>
  387. #ifdef DATA_DIRECTORY
  388. if (!cur_file && (strlen(DATA_DIRECTORY)+strlen(f)<STR_BUF_LENGTH)) {
  389.   sprintf(str_buf,"%s%s",DATA_DIRECTORY,f);
  390.   cur_file=fopen(str_buf,"r");
  391. }
  392. #endif
  393. @ @<External f...@>=
  394. long gb_open(f)
  395.     char *f;
  396. {
  397.   strncpy(file_name,f,sizeof(file_name)-1);
  398.      /* save the name for use by |gb_close| */
  399.   gb_raw_open(f);
  400.   if (cur_file) {
  401.     @<Check the first line; return if unsuccessful@>;
  402.     @<Check the second line; return if unsuccessful@>;
  403.     @<Check the third line; return if unsuccessful@>;
  404.     @<Check the fourth line; return if unsuccessful@>;
  405.     gb_newline(); /* the first line of real data is now in the buffer */
  406.   }
  407.   return io_errors;
  408. }
  409. @ @<Private...@>=
  410. static char file_name[20]; /* name of the data file, without a prefix */
  411. @ The first four lines of a typical data file should look something like this:
  412. $$halign{hskip5em.{#}hfillcr
  413.  * File "words.dat" from the Stanford GraphBase (C) 1993 Stanford Universitycr
  414.  * A database of English five-letter wordscr
  415.  * This file may be freely copied but please do not change it in any way!cr
  416.  * (Checksum parameters 5757,526296596)cr}$$
  417. We actually verify only that the first four lines of a data file named |"foo"|
  418. begin respectively with the characters
  419. $$halign{hskip5em.{#}hfillcr
  420.  * File "foo"cr
  421.  *cr
  422.  *cr
  423.  * (Checksum parameters $l$,$m$)cr}$$
  424. where $l$ and $m$ are decimal numbers. The values of $l$ and~$m$
  425. are stored away as |tot_lines| and |final_magic|, to be matched at the
  426. end of the file.
  427. @<Check the first line...@>=
  428. sprintf(str_buf,"* File "%s"",f);
  429. if (strncmp(buffer,str_buf,strlen(str_buf)))
  430.   return (io_errors |= bad_first_line);
  431. @ @<Check the second line...@>=
  432. fill_buf();
  433. if (*buffer!='*') return (io_errors |= bad_second_line);
  434. @ @<Check the third line...@>=
  435. fill_buf();
  436. if (*buffer!='*') return (io_errors |= bad_third_line);
  437. @ @<Check the fourth line; return if unsuccessful@>=
  438. fill_buf();
  439. if (strncmp(buffer,"* (Checksum parameters ",23))
  440.   return (io_errors |= bad_fourth_line);
  441. cur_pos +=23;
  442. tot_lines=gb_number(10);
  443. if (gb_char()!=',')
  444.   return (io_errors |= bad_fourth_line);
  445. final_magic=gb_number(10);
  446. if (gb_char()!=')')
  447.   return (io_errors |= bad_fourth_line);
  448. @* Closing a file. After all data has been input, or should have been input,
  449. we check that the file was open and that it had the correct number of
  450. lines, the correct magic number, and a correct final line.  The
  451. subroutine |gb_close|, like |gb_open|, returns the value of
  452. |io_errors|, which will be nonzero if at least one problem was noticed.
  453. @<Test the |gb_close| routine; exit if there's trouble@>=
  454. if (gb_close()!=0)
  455.   exit_test("Bad checksum, or difficulty closing the file");
  456. @ @<External f...@>=
  457. long gb_close()
  458. {
  459.   if (!cur_file)
  460.     return (io_errors |= no_file_open);
  461.   fill_buf();
  462.   sprintf(str_buf,"* End of file "%s"",file_name);
  463.   if (strncmp(buffer,str_buf,strlen(str_buf)))
  464.     io_errors |= bad_last_line;
  465.   more_data=buffer[0]=0;
  466.    /* now the {sc GB_,IO} routines are effectively shut down */
  467.    /* we have |cur_pos=buffer| */
  468.   if (fclose(cur_file)!=0)
  469.     return (io_errors |= cant_close_file);
  470.   cur_file=NULL;
  471.   if (line_no!=tot_lines+1)
  472.     return (io_errors |= wrong_number_of_lines);
  473.   if (magic!=final_magic)
  474.     return (io_errors |= wrong_checksum);
  475.   return io_errors;
  476. }
  477. @ There is also a less paranoid routine, |gb_raw_close|, that
  478. closes user-generated files. It simply closes the current file, if any,
  479. and returns the value of the |magic| checksum.
  480. Example: The |restore_graph| subroutine in {sc GB_,SAVE} uses
  481. |gb_raw_open| and |gb_raw_close| to provide system-independent input
  482. that is almost as foolproof as the reading of standard GraphBase data.
  483. @ @d gb_raw_close gb_r_close /* for Procrustean external linkage */
  484. @(gb_io.h@>=
  485. #define gb_raw_close gb_r_close
  486. extern long gb_close(); /* close a GraphBase data file; return 0 if OK */
  487. extern long gb_raw_close(); /* close file and return the checksum */
  488. @ @<External f...@>=
  489. long gb_raw_close()
  490. {
  491.   if (cur_file) {
  492.     fclose(cur_file);
  493.     more_data=buffer[0]=0;
  494.     cur_pos=buffer;
  495.     cur_file=NULL;
  496.   }
  497.   return magic;
  498. }
  499. @* Index. Here is a list that shows where the identifiers of this program are
  500. defined and used.