summaryrefslogtreecommitdiff
path: root/lib/xstrndup.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2003-08-17 16:05:16 +0000
committerBruno Haible <bruno@clisp.org>2003-08-17 16:05:16 +0000
commit2506f8959da247eeccb61bfd5ef8726a7aa4bcae (patch)
tree77011ca008e7da5e7ff30c3bb521e78595ea4add /lib/xstrndup.h
parentd81551a184dbde3caa146a301d2ffb26f31b8d64 (diff)
downloadgnulib-2506f8959da247eeccb61bfd5ef8726a7aa4bcae.tar.gz
Add an include file to module 'strndup'.
New module 'xstrndup'.
Diffstat (limited to 'lib/xstrndup.h')
-rw-r--r--lib/xstrndup.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/xstrndup.h b/lib/xstrndup.h
new file mode 100644
index 0000000000..b09a2fc0bd
--- /dev/null
+++ b/lib/xstrndup.h
@@ -0,0 +1,24 @@
+/* Duplicate a bounded initial segment of a string, with out-of-memory
+ checking.
+ Copyright (C) 2003 Free Software Foundation, Inc.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+
+#include <stddef.h>
+
+/* Return a newly allocated copy of at most N bytes of STRING.
+ In other words, return a copy of the initial segment of length N of
+ STRING. */
+extern char *xstrndup (const char *string, size_t n);