It exceeds the 256K limit. However, memicmp and stricmp are defined in it. Here is the source of my main program:
#include "isam.h"
#include "isamerr.h"
int i;
char source[129]="";
Db_Obj *db;
main(int argc, char *argv[]) {
for (i=0;i<argc;i++) {
strcat(source,argv);
strcat(source," ");
}
/*
if (argc<3) abortx(source,"\nMust be at least 2 parameters to create database");
*/
argv[argc]==NULL;
db=icreate_db(argv[1], 0, &argv[2]);
/*
if (db==NULL) abortx(source,"\ncould not create database");
else joblog(source,"\ndatabase created successfully");
*/
}