aboutsummaryrefslogtreecommitdiff
path: root/src/jtutil
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-03-24 14:34:25 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-03-24 14:34:25 +0000
commit51b5a76e72c397b77da8b96717e9827484fdc41d (patch)
tree3990d0874f0f88d058ae8a6e4f721a48b76f9e16 /src/jtutil
parent6a77bf8cdf594d0888c4baa9b9cb0bd57f60a346 (diff)
oops forgot to cvs-commit this file!
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1009 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/jtutil')
-rw-r--r--src/jtutil/misc.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/jtutil/misc.h b/src/jtutil/misc.h
new file mode 100644
index 0000000..34bee35
--- /dev/null
+++ b/src/jtutil/misc.h
@@ -0,0 +1,19 @@
+/* misc.h -- misc C-compatible stuff */
+/* $Header$ */
+
+/*
+ * prerequisites:
+ * <stdlib.h> or <string.h> or <stdio.h> // size_t
+ */
+
+/*
+ * misc C-compatible string functions
+ *
+ * FIXME:
+ * Once Tom commits my patches to put Util_Strli{cat,cpy}() in the flesh,
+ * we won't need this.
+ */
+#ifdef __cplusplus
+ extern "C"
+#endif
+size_t AHFinderDirect_Strlcat(char* dst, const char* src, size_t dst_size);