C/C++
c_prog.asc
Associated article: C Programming
Tags: C/C++
_C PROGRAMMING COLUMN_ by Al Stevens [LISTING ONE] /* --------------- database.h ---------------------- */ #define MXKEYLEN 80 /* maximum key length for indexes */ #define ERROR -1 #define OK 0 #ifndef TRUE #define TRUE 1 #define FALSE 0 #endif typedef long RPTR; /* B-tree node and file address */ void ...


