From 2de9abc5c9d40b3c716307d67d16146f823fd554 Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Tue, 17 Jan 2012 14:43:55 +0000 Subject: add the output of bootstrap --- gnulib | 1 - gnulib/lib/unicase/u8-is-titlecase.c | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) delete mode 160000 gnulib create mode 100644 gnulib/lib/unicase/u8-is-titlecase.c (limited to 'gnulib/lib/unicase/u8-is-titlecase.c') diff --git a/gnulib b/gnulib deleted file mode 160000 index 443bc5f..0000000 --- a/gnulib +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 443bc5ffcf7429e557f4a371b0661abe98ddbc13 diff --git a/gnulib/lib/unicase/u8-is-titlecase.c b/gnulib/lib/unicase/u8-is-titlecase.c new file mode 100644 index 0000000..94568b7 --- /dev/null +++ b/gnulib/lib/unicase/u8-is-titlecase.c @@ -0,0 +1,30 @@ +/* Test whether an UTF-8 string is entirely title case. + Copyright (C) 2009-2011 Free Software Foundation, Inc. + Written by Bruno Haible , 2009. + + This program is free software: you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published + by the Free Software Foundation; either version 3 of the License, 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ + +#include + +/* Specification. */ +#include "unicase.h" + +#include "unicase/invariant.h" + +int +u8_is_titlecase (const uint8_t *s, size_t n, const char *iso639_language, + bool *resultp) +{ + return u8_is_invariant (s, n, u8_totitle, iso639_language, resultp); +} -- cgit v1.2.1