summaryrefslogtreecommitdiff
path: root/lib/unistr/u8-strstr.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2007-01-09 14:10:28 +0000
committerBruno Haible <bruno@clisp.org>2007-01-09 14:10:28 +0000
commit46f74723b3fd5b41bebc0fd9c10b642726a0d47e (patch)
tree87ec4e050ffd1ab134ed1a8ce43b9236760fe490 /lib/unistr/u8-strstr.c
parent050fc3a8a5e95ee648a1e2658d8078b2e085f3cf (diff)
downloadgnulib-46f74723b3fd5b41bebc0fd9c10b642726a0d47e.tar.gz
New modules 'unistr/u8-strstr', 'unistr/u16-strstr', 'unistr/u32-strstr'.
Diffstat (limited to 'lib/unistr/u8-strstr.c')
-rw-r--r--lib/unistr/u8-strstr.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/unistr/u8-strstr.c b/lib/unistr/u8-strstr.c
new file mode 100644
index 0000000000..a818e3ef0f
--- /dev/null
+++ b/lib/unistr/u8-strstr.c
@@ -0,0 +1,30 @@
+/* Substring test for UTF-8 strings.
+ Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+ Written by Bruno Haible <bruno@clisp.org>, 2002.
+
+ This program is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Library 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
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ USA. */
+
+#include <config.h>
+
+/* Specification. */
+#include "unistr.h"
+
+/* FIXME: Maybe walking the string via u8_mblen is a win? */
+
+#define FUNC u8_strstr
+#define UNIT uint8_t
+#define U_STRCHR u8_strchr
+#include "u-strstr.h"