home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include "vista.h"
- #include "tims.h"
-
- int strcmp( P1(char *) Pi(char *) );
-
- /* List authors
- */
- list_authors()
- {
- char start[32], name[32];
-
- printf("start name: ");
- gets(start);
- if ( start[0] != '\0' ) {
- /* scan for first name */
- for (d_findfm(AUTHOR_LIST, CURR_DB); db_status == S_OKAY; d_findnm(AUTHOR_LIST, CURR_DB)) {
- d_crread(NAME, name, CURR_DB);
- if ( strcmp(start, name) <= 0 ) break;
- }
- }
- else
- d_findfm(AUTHOR_LIST, CURR_DB);
-
- while ( db_status == S_OKAY ) {
- d_crread(NAME, name, CURR_DB);
- printf(" %s\n", name);
- d_findnm(AUTHOR_LIST, CURR_DB);
- }
- printf("--- press <enter> to continue");
- gets(name);
- return (0);
- }
-