summaryrefslogtreecommitdiff
path: root/db/examples_c/csv
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-07-30 11:58:31 +0300
committerPanu Matilainen <pmatilai@redhat.com>2007-07-30 11:58:31 +0300
commitcab228435bde1b5496522c03a4ce9840f2ef3701 (patch)
tree2c37b65d176e2de097603333f4de071c31eeff3d /db/examples_c/csv
parent2d07882d45e9e575c00f8f402d4c7271bb65cfe9 (diff)
downloadlibrpm-tizen-cab228435bde1b5496522c03a4ce9840f2ef3701.tar.gz
librpm-tizen-cab228435bde1b5496522c03a4ce9840f2ef3701.tar.bz2
librpm-tizen-cab228435bde1b5496522c03a4ce9840f2ef3701.zip
Update internal BDB to version 4.6.18.
Diffstat (limited to 'db/examples_c/csv')
-rw-r--r--db/examples_c/csv/DbRecord.c5
-rw-r--r--db/examples_c/csv/README5
-rw-r--r--db/examples_c/csv/code.c5
-rw-r--r--db/examples_c/csv/csv.h13
-rw-r--r--db/examples_c/csv/csv_extern.h5
-rw-r--r--db/examples_c/csv/db.c5
-rw-r--r--db/examples_c/csv/load.c5
-rw-r--r--db/examples_c/csv/load_main.c5
-rw-r--r--db/examples_c/csv/query.c5
-rw-r--r--db/examples_c/csv/query_main.c5
-rw-r--r--db/examples_c/csv/util.c5
11 files changed, 26 insertions, 37 deletions
diff --git a/db/examples_c/csv/DbRecord.c b/db/examples_c/csv/DbRecord.c
index 9b3662b5c..3ba394d92 100644
--- a/db/examples_c/csv/DbRecord.c
+++ b/db/examples_c/csv/DbRecord.c
@@ -1,10 +1,9 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2005-2006
- * Oracle Corporation. All rights reserved.
+ * Copyright (c) 2005,2007 Oracle. All rights reserved.
*
- * $Id: DbRecord.c,v 1.12 2006/08/24 14:45:42 bostic Exp $
+ * $Id: DbRecord.c,v 1.14 2007/05/17 15:15:13 bostic Exp $
*/
#include "csv.h"
diff --git a/db/examples_c/csv/README b/db/examples_c/csv/README
index c96718e62..d4bf16c59 100644
--- a/db/examples_c/csv/README
+++ b/db/examples_c/csv/README
@@ -1,10 +1,9 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2005-2006
- * Oracle Corporation. All rights reserved.
+ * Copyright (c) 2005,2007 Oracle. All rights reserved.
*
- * $Id: README,v 1.18 2006/08/24 14:45:42 bostic Exp $
+ * $Id: README,v 1.20 2007/05/17 15:15:13 bostic Exp $
*/
The "comma-separated value" (csv) directory is a suite of three programs:
diff --git a/db/examples_c/csv/code.c b/db/examples_c/csv/code.c
index 85569f2b4..55df46a55 100644
--- a/db/examples_c/csv/code.c
+++ b/db/examples_c/csv/code.c
@@ -1,10 +1,9 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2005-2006
- * Oracle Corporation. All rights reserved.
+ * Copyright (c) 2005,2007 Oracle. All rights reserved.
*
- * $Id: code.c,v 1.12 2006/08/24 14:45:42 bostic Exp $
+ * $Id: code.c,v 1.14 2007/05/17 15:15:13 bostic Exp $
*/
#include "csv.h"
diff --git a/db/examples_c/csv/csv.h b/db/examples_c/csv/csv.h
index c6cfd93f4..0e923deb7 100644
--- a/db/examples_c/csv/csv.h
+++ b/db/examples_c/csv/csv.h
@@ -1,10 +1,9 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2005-2006
- * Oracle Corporation. All rights reserved.
+ * Copyright (c) 2005,2007 Oracle. All rights reserved.
*
- * $Id: csv.h,v 1.15 2006/08/24 14:45:43 bostic Exp $
+ * $Id: csv.h,v 1.18 2007/05/17 17:26:05 bostic Exp $
*/
#include <sys/types.h>
@@ -17,7 +16,7 @@
#include <string.h>
#ifdef _WIN32
-#define WIN32_LEAN_AND_MEAN 1
+#define WIN32_LEAN_AND_MEAN 1
#include <direct.h>
#include <db.h>
@@ -95,8 +94,8 @@ extern char *progname; /* Program name */
extern int verbose; /* Program verbosity */
#ifdef _WIN32
#undef strcasecmp
-#define strcasecmp _stricmp
+#define strcasecmp _stricmp
#undef strncasecmp
-#define strncasecmp _strnicmp
-#define mkdir(d, perm) _mkdir(d)
+#define strncasecmp _strnicmp
+#define mkdir(d, perm) _mkdir(d)
#endif
diff --git a/db/examples_c/csv/csv_extern.h b/db/examples_c/csv/csv_extern.h
index 534bae2b5..ada2a2b56 100644
--- a/db/examples_c/csv/csv_extern.h
+++ b/db/examples_c/csv/csv_extern.h
@@ -1,10 +1,9 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2005-2006
- * Oracle Corporation. All rights reserved.
+ * Copyright (c) 2005,2007 Oracle. All rights reserved.
*
- * $Id: csv_extern.h,v 1.7 2006/08/24 14:45:43 bostic Exp $
+ * $Id: csv_extern.h,v 1.9 2007/05/17 15:15:13 bostic Exp $
*/
extern DbRecord DbRecord_base; /* Initialized structure. */
diff --git a/db/examples_c/csv/db.c b/db/examples_c/csv/db.c
index 0e7d2cd58..5e7229d73 100644
--- a/db/examples_c/csv/db.c
+++ b/db/examples_c/csv/db.c
@@ -1,10 +1,9 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2005-2006
- * Oracle Corporation. All rights reserved.
+ * Copyright (c) 2005,2007 Oracle. All rights reserved.
*
- * $Id: db.c,v 1.14 2006/08/24 14:45:43 bostic Exp $
+ * $Id: db.c,v 1.16 2007/05/17 15:15:13 bostic Exp $
*/
#include "csv.h"
diff --git a/db/examples_c/csv/load.c b/db/examples_c/csv/load.c
index c581e69ee..0732fe1a5 100644
--- a/db/examples_c/csv/load.c
+++ b/db/examples_c/csv/load.c
@@ -1,10 +1,9 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2005-2006
- * Oracle Corporation. All rights reserved.
+ * Copyright (c) 2005,2007 Oracle. All rights reserved.
*
- * $Id: load.c,v 1.9 2006/08/24 14:45:43 bostic Exp $
+ * $Id: load.c,v 1.11 2007/05/17 15:15:13 bostic Exp $
*/
#include "csv.h"
diff --git a/db/examples_c/csv/load_main.c b/db/examples_c/csv/load_main.c
index 9f83e3388..96850f768 100644
--- a/db/examples_c/csv/load_main.c
+++ b/db/examples_c/csv/load_main.c
@@ -1,10 +1,9 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2005-2006
- * Oracle Corporation. All rights reserved.
+ * Copyright (c) 2005,2007 Oracle. All rights reserved.
*
- * $Id: load_main.c,v 1.10 2006/08/24 14:45:43 bostic Exp $
+ * $Id: load_main.c,v 1.12 2007/05/17 15:15:13 bostic Exp $
*/
#include "csv.h"
diff --git a/db/examples_c/csv/query.c b/db/examples_c/csv/query.c
index bd11da9dd..c30b68d6b 100644
--- a/db/examples_c/csv/query.c
+++ b/db/examples_c/csv/query.c
@@ -1,10 +1,9 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2005-2006
- * Oracle Corporation. All rights reserved.
+ * Copyright (c) 2005,2007 Oracle. All rights reserved.
*
- * $Id: query.c,v 1.14 2006/08/24 14:45:43 bostic Exp $
+ * $Id: query.c,v 1.16 2007/05/17 15:15:13 bostic Exp $
*/
#include "csv.h"
diff --git a/db/examples_c/csv/query_main.c b/db/examples_c/csv/query_main.c
index 69c0109f1..56adc8bdd 100644
--- a/db/examples_c/csv/query_main.c
+++ b/db/examples_c/csv/query_main.c
@@ -1,10 +1,9 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2005-2006
- * Oracle Corporation. All rights reserved.
+ * Copyright (c) 2005,2007 Oracle. All rights reserved.
*
- * $Id: query_main.c,v 1.10 2006/08/24 14:45:43 bostic Exp $
+ * $Id: query_main.c,v 1.12 2007/05/17 15:15:13 bostic Exp $
*/
#include "csv.h"
diff --git a/db/examples_c/csv/util.c b/db/examples_c/csv/util.c
index 60382e251..36ac57a45 100644
--- a/db/examples_c/csv/util.c
+++ b/db/examples_c/csv/util.c
@@ -1,10 +1,9 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2005-2006
- * Oracle Corporation. All rights reserved.
+ * Copyright (c) 2005,2007 Oracle. All rights reserved.
*
- * $Id: util.c,v 1.19 2006/08/24 14:45:43 bostic Exp $
+ * $Id: util.c,v 1.21 2007/05/17 15:15:13 bostic Exp $
*/
#include "csv.h"