home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Education Master 1994 (4th Edition)
/
EDUCATIONS_MASTER_4TH_EDITION.bin
/
files
/
progng_c
/
smallc
/
sdb.cs
< prev
next >
Wrap
Text File
|
1994-01-01
|
512b
|
23 lines
/* SDB - main routine */
#include "stdio.h"
#include "sdbio.h"
extern int dbv_errcode;
main()
{
printf("SDB - version 2.0\n");
db_sinit();
db_ifile("sdb.ini");
while (TRUE) {
db_prompt("SDB> ","\t> ");
if (!db_parse(NULL)) {
printf("** error: %s ***\n",db_ertxt(dbv_errcode));
db_kill();
}
}
}