aboutsummaryrefslogtreecommitdiffstats
path: root/include/utilstr.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/utilstr.h')
-rw-r--r--include/utilstr.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/utilstr.h b/include/utilstr.h
index b3bcfb2..8739070 100644
--- a/include/utilstr.h
+++ b/include/utilstr.h
@@ -1,7 +1,7 @@
/******************************************************************************
* utilstr.h - prototypes for string utility functions
*
- * $Id: utilstr.h,v 1.9 2002/07/28 06:44:01 scribe Exp $
+ * $Id: utilstr.h,v 1.10 2002/10/01 19:52:40 dglassey Exp $
*
* Copyright 1998 CrossWire Bible Society (http://www.crosswire.org)
* CrossWire Bible Society
@@ -22,6 +22,10 @@
#ifndef UTILSTR_H
#define UTILSTR_H
+#include <defs.h>
+
+SWORD_NAMESPACE_START
+
/** Use stdstr to copy a const char* to a char*
*/
char *stdstr (char **iistr, const char *istr);
@@ -81,4 +85,5 @@ static const unsigned char SW_toupper_array[256] =
#define SW_toupper(c) SW_toupper_array[(unsigned char)c]
+SWORD_NAMESPACE_END
#endif