b4bfffa5cc
pxlib is a simply and still small C library to read Paradox DB files. It supports all versions starting from 3.0. It currently has a very limited set of functions like to open a DB file, read its header and read every single record. It can also extract blob data and write it to a file.
14 lines
359 B
Text
14 lines
359 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2003/11/04 05:08:26 mpasternak Exp $
|
|
|
|
--- src/main.c Thu Oct 30 10:11:29 2003
|
|
+++ src/main.c Tue Nov 4 05:53:45 2003
|
|
@@ -9,6 +9,9 @@
|
|
#include <libgen.h>
|
|
#include <paradox-gsf.h>
|
|
#include "config.h"
|
|
+#ifdef ENABLE_NLS
|
|
+#include <locale.h>
|
|
+#endif
|
|
#define _(String) gettext(String)
|
|
|
|
void strrep(char *str, char c1, char c2) {
|