diff options
| author | Stig Bakken <ssb@php.net> | 1999-04-19 13:56:50 +0000 |
|---|---|---|
| committer | Stig Bakken <ssb@php.net> | 1999-04-19 13:56:50 +0000 |
| commit | 6094128afeacfa87d35d1246610a3010654b052f (patch) | |
| tree | 369d029066cf2a735b6a638b94d4bdc529b6c373 /ext/dbase/dbf_head.h | |
| parent | b515f34dd1d5956aeb758cc3f636c183c8adcc73 (diff) | |
| download | php-git-6094128afeacfa87d35d1246610a3010654b052f.tar.gz | |
moved dbase into ext/ along with the bundled library
dbase programs are no longer included
Diffstat (limited to 'ext/dbase/dbf_head.h')
| -rw-r--r-- | ext/dbase/dbf_head.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/dbase/dbf_head.h b/ext/dbase/dbf_head.h new file mode 100644 index 0000000000..481e085027 --- /dev/null +++ b/ext/dbase/dbf_head.h @@ -0,0 +1,9 @@ +extern dbhead_t *get_dbf_head(int fd); +extern void free_dbf_head(dbhead_t *dbh); +extern int put_dbf_head(dbhead_t *dbh); +extern int get_dbf_field(dbhead_t *dbh, dbfield_t *dbf); +extern int put_dbf_field(dbhead_t *dbh, dbfield_t *dbf); +extern void put_dbf_info(dbhead_t *dbh); +extern char *get_dbf_f_fmt(dbfield_t *dbf); +extern dbhead_t *dbf_open(char *dp, int o_flags); +extern void dbf_head_info(dbhead_t *dbh); |
