gnulib.git
17 years ago* m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
Paul Eggert [Sat, 24 Feb 2007 10:01:49 +0000 (10:01 +0000)]
* m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
loops on small arguments.  This attempts to avoid the problem
Bruno Haible reported for AIX 4.3.2 in
<http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.

17 years ago* m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
Jim Meyering [Sat, 24 Feb 2007 07:58:11 +0000 (07:58 +0000)]
* m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
Needed for help2man.

17 years agoif have foo_.h, cvs-ignore foo.h
Karl Berry [Sat, 24 Feb 2007 01:13:51 +0000 (01:13 +0000)]
if have foo_.h, cvs-ignore foo.h

17 years agoRemove a duplicate ChangeLog entry.
Jim Meyering [Fri, 23 Feb 2007 19:14:39 +0000 (19:14 +0000)]
Remove a duplicate ChangeLog entry.

17 years ago* lib/getdate.h (includes): Include <time.h>, not "timespec.h".
Eric Blake [Fri, 23 Feb 2007 18:25:21 +0000 (18:25 +0000)]
* lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
* lib/stat-time.h (includes): Likewise.
* lib/utimecmp.c (includes): Likewise.
* lib/utimens.h (includes): Likewise.
* lib/getdate.y (includes): Also include "timespec.h" for use
internal to the module.
* modules/utimens (Depends-on): Revert yesterday's patch.
* modules/nanosleep (Depends-on): Add missing dependency.

17 years agogetlogin_r.h was replaced with <unistd.h>.
Bruno Haible [Thu, 22 Feb 2007 23:33:19 +0000 (23:33 +0000)]
getlogin_r.h was replaced with <unistd.h>.

17 years agoFix comment.
Bruno Haible [Thu, 22 Feb 2007 23:32:46 +0000 (23:32 +0000)]
Fix comment.

17 years ago* modules/utimens (Depends-on): Add timespec, required for
Jim Meyering [Thu, 22 Feb 2007 21:27:01 +0000 (21:27 +0000)]
* modules/utimens (Depends-on): Add timespec, required for
utimens.h's inclusion of timespec.h.

17 years agoRevert.
Simon Josefsson [Thu, 22 Feb 2007 14:08:02 +0000 (14:08 +0000)]
Revert.

17 years agomodules/time (Depends-on): Add restrict.
Simon Josefsson [Thu, 22 Feb 2007 08:14:32 +0000 (08:14 +0000)]
modules/time (Depends-on): Add restrict.

17 years ago* lib/getcwd.c (__getcwd): Undo previous change; it mishandled
Paul Eggert [Wed, 21 Feb 2007 20:49:59 +0000 (20:49 +0000)]
* lib/getcwd.c (__getcwd): Undo previous change; it mishandled
long unreadable paths in GNU/Linux.  Problem reported by Andreas
Schwab in
<http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
I'll try to think of a better way to fix the Solaris problem.

17 years ago* lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
Paul Eggert [Wed, 21 Feb 2007 08:36:35 +0000 (08:36 +0000)]
* lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
like glibc; on Solaris 10, it fails with errno == EINVAL.
POSIX says the behavior is unspecified if the first argument is NULL,
so play it safe and never pass NULL to the system getcwd.

17 years ago* lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
Jim Meyering [Wed, 21 Feb 2007 07:57:33 +0000 (07:57 +0000)]
* lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
of gettimeofday.  It would conflict with the one now always
provided via sys_time_.h.  Reported by Matthew Woehlke, as
an IRIX 6.5 build failure.

17 years agoMinor fixups to port to Solaris 10 with Sun C 5.8.
Paul Eggert [Wed, 21 Feb 2007 07:54:16 +0000 (07:54 +0000)]
Minor fixups to port to Solaris 10 with Sun C 5.8.
* lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
* modules/getcwd (Depends-on): Add dirfd.
* lib/putenv.c (putenv): #undef it.
(rpl_putenv): New decl.
(malloc, free): Include <stdlib.h> rather than prototyping separately.

17 years agosnprintf.h is gone.
Bruno Haible [Wed, 21 Feb 2007 02:28:29 +0000 (02:28 +0000)]
snprintf.h is gone.

17 years agoTests for module 'stdio'.
Bruno Haible [Wed, 21 Feb 2007 02:25:35 +0000 (02:25 +0000)]
Tests for module 'stdio'.

17 years agovsnprintf.h is replaced with <stdio.h>.
Bruno Haible [Wed, 21 Feb 2007 02:21:08 +0000 (02:21 +0000)]
vsnprintf.h is replaced with <stdio.h>.

17 years agosnprintf.h is replaced with <stdio.h>.
Bruno Haible [Wed, 21 Feb 2007 02:19:34 +0000 (02:19 +0000)]
snprintf.h is replaced with <stdio.h>.

17 years agoNew module 'stdio'.
Bruno Haible [Wed, 21 Feb 2007 02:18:10 +0000 (02:18 +0000)]
New module 'stdio'.

17 years agoWhitespace change in macros.
Bruno Haible [Wed, 21 Feb 2007 00:02:37 +0000 (00:02 +0000)]
Whitespace change in macros.

17 years ago* lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
Jim Meyering [Tue, 20 Feb 2007 09:54:19 +0000 (09:54 +0000)]
* lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
used by e.g., mingw.  From Bruno Haible.

17 years agoAvoid some "gcc -Wmissing-prototypes" warnings on mingw.
Bruno Haible [Tue, 20 Feb 2007 00:10:42 +0000 (00:10 +0000)]
Avoid some "gcc -Wmissing-prototypes" warnings on mingw.

17 years ago* m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
Bruno Haible [Mon, 19 Feb 2007 23:55:02 +0000 (23:55 +0000)]
* m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
from mingw users.

17 years agoOops, correct attribution.
Bruno Haible [Mon, 19 Feb 2007 22:52:28 +0000 (22:52 +0000)]
Oops, correct attribution.

17 years agoSuppress some gcc warnings in glibc header files.
Bruno Haible [Mon, 19 Feb 2007 22:51:33 +0000 (22:51 +0000)]
Suppress some gcc warnings in glibc header files.

17 years agoDon't use FD after a successful "fdopendir (fd)".
Jim Meyering [Mon, 19 Feb 2007 20:03:22 +0000 (20:03 +0000)]
Don't use FD after a successful "fdopendir (fd)".
* lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
Reset it by calling dirfd on the just-obtained DIR*.

17 years ago* m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
Jim Meyering [Mon, 19 Feb 2007 18:19:34 +0000 (18:19 +0000)]
* m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
Prompted by a report from Bruno Haible that mingw lacks ftruncate.

SCALAR(0x704170)

17 years agoReplaced with <unistd.h>.
Bruno Haible [Mon, 19 Feb 2007 02:26:34 +0000 (02:26 +0000)]
Replaced with <unistd.h>.

17 years agoMove more declarations into <unistd.h>.
Bruno Haible [Mon, 19 Feb 2007 02:23:32 +0000 (02:23 +0000)]
Move more declarations into <unistd.h>.

17 years agogetsubopt.h is replaced with <stdlib.h>.
Bruno Haible [Mon, 19 Feb 2007 00:08:40 +0000 (00:08 +0000)]
getsubopt.h is replaced with <stdlib.h>.

17 years agoDepends on dup2 function being available.
Bruno Haible [Sun, 18 Feb 2007 22:44:21 +0000 (22:44 +0000)]
Depends on dup2 function being available.

17 years agoexit.h is replaced with stdlib.h.
Bruno Haible [Sun, 18 Feb 2007 21:08:06 +0000 (21:08 +0000)]
exit.h is replaced with stdlib.h.

17 years agoWork around an ugly glibc hack.
Bruno Haible [Sun, 18 Feb 2007 20:55:53 +0000 (20:55 +0000)]
Work around an ugly glibc hack.

17 years agoTests for module 'stdlib'.
Bruno Haible [Sun, 18 Feb 2007 15:44:08 +0000 (15:44 +0000)]
Tests for module 'stdlib'.

17 years agomkstemp.h is replaced with <stdlib.h>.
Bruno Haible [Sun, 18 Feb 2007 15:43:07 +0000 (15:43 +0000)]
mkstemp.h is replaced with <stdlib.h>.

17 years agomkdtemp.h is replaced with <stdlib.h>.
Bruno Haible [Sun, 18 Feb 2007 15:42:40 +0000 (15:42 +0000)]
mkdtemp.h is replaced with <stdlib.h>.

17 years agoexit.h is replaced with <stdlib.h>.
Bruno Haible [Sun, 18 Feb 2007 15:42:12 +0000 (15:42 +0000)]
exit.h is replaced with <stdlib.h>.

17 years agoNew module 'stdlib'.
Bruno Haible [Sun, 18 Feb 2007 15:39:54 +0000 (15:39 +0000)]
New module 'stdlib'.

17 years agoNew module 'stdlib'.
Bruno Haible [Sun, 18 Feb 2007 15:39:54 +0000 (15:39 +0000)]
New module 'stdlib'.

17 years agoNew module 'math'.
Bruno Haible [Sun, 18 Feb 2007 15:38:34 +0000 (15:38 +0000)]
New module 'math'.

17 years agoTests for module 'math'.
Bruno Haible [Sun, 18 Feb 2007 15:11:27 +0000 (15:11 +0000)]
Tests for module 'math'.

17 years agoNew module 'math'. <math.h> replaces mathl.h.
Bruno Haible [Sun, 18 Feb 2007 15:10:28 +0000 (15:10 +0000)]
New module 'math'. <math.h> replaces mathl.h.

17 years agoEmit linker warnings for imaxabs, imaxdiv, strtoimax, strtoumax when these
Bruno Haible [Sun, 18 Feb 2007 04:28:27 +0000 (04:28 +0000)]
Emit linker warnings for imaxabs, imaxdiv, strtoimax, strtoumax when these
functions are missing.

17 years agoTests for module 'wctype'.
Bruno Haible [Sun, 18 Feb 2007 04:23:08 +0000 (04:23 +0000)]
Tests for module 'wctype'.

17 years agoTests for module 'wchar'.
Bruno Haible [Sun, 18 Feb 2007 04:22:23 +0000 (04:22 +0000)]
Tests for module 'wchar'.

17 years agoTests for module 'unistd'.
Bruno Haible [Sun, 18 Feb 2007 04:21:43 +0000 (04:21 +0000)]
Tests for module 'unistd'.

17 years agoTests for module 'time'.
Bruno Haible [Sun, 18 Feb 2007 04:20:26 +0000 (04:20 +0000)]
Tests for module 'time'.

17 years agoTests for module 'sysexits'.
Bruno Haible [Sun, 18 Feb 2007 04:19:44 +0000 (04:19 +0000)]
Tests for module 'sysexits'.

17 years agoTests for module 'sys_time'.
Bruno Haible [Sun, 18 Feb 2007 04:19:03 +0000 (04:19 +0000)]
Tests for module 'sys_time'.

17 years agoTests for module 'sys_stat'.
Bruno Haible [Sun, 18 Feb 2007 04:18:22 +0000 (04:18 +0000)]
Tests for module 'sys_stat'.

17 years agoTests for module 'sys_socket'.
Bruno Haible [Sun, 18 Feb 2007 04:17:33 +0000 (04:17 +0000)]
Tests for module 'sys_socket'.

17 years agoTests for module 'sys_select'.
Bruno Haible [Sun, 18 Feb 2007 04:16:52 +0000 (04:16 +0000)]
Tests for module 'sys_select'.

17 years agoTests for module 'string'.
Bruno Haible [Sun, 18 Feb 2007 04:16:13 +0000 (04:16 +0000)]
Tests for module 'string'.

17 years agoTests for module 'stdbool'.
Bruno Haible [Sun, 18 Feb 2007 04:15:31 +0000 (04:15 +0000)]
Tests for module 'stdbool'.

17 years agoTests of module 'netinet_in'.
Bruno Haible [Sun, 18 Feb 2007 04:14:34 +0000 (04:14 +0000)]
Tests of module 'netinet_in'.

17 years agoTests for module 'inttypes'.
Bruno Haible [Sun, 18 Feb 2007 04:13:54 +0000 (04:13 +0000)]
Tests for module 'inttypes'.

17 years agoTests for module 'fcntl'.
Bruno Haible [Sun, 18 Feb 2007 04:13:09 +0000 (04:13 +0000)]
Tests for module 'fcntl'.

17 years agoTests for module 'byteswap'.
Bruno Haible [Sun, 18 Feb 2007 04:12:20 +0000 (04:12 +0000)]
Tests for module 'byteswap'.

17 years agoTests for module arpa_inet.
Bruno Haible [Sun, 18 Feb 2007 04:11:29 +0000 (04:11 +0000)]
Tests for module arpa_inet.

17 years agoSubstitute a few more variables.
Bruno Haible [Sun, 18 Feb 2007 04:10:04 +0000 (04:10 +0000)]
Substitute a few more variables.

17 years agoUse GL_LINK_WARNING in the generated inttypes.h.
Bruno Haible [Sun, 18 Feb 2007 02:02:26 +0000 (02:02 +0000)]
Use GL_LINK_WARNING in the generated inttypes.h.

17 years agoNew module 'link-warning'.
Bruno Haible [Sun, 18 Feb 2007 02:00:09 +0000 (02:00 +0000)]
New module 'link-warning'.

17 years agoMerge gl_HEADER_STRING_H_DEFAULTS and gl_STRING_MODULE_INDICATOR_DEFAULTS into
Bruno Haible [Sun, 18 Feb 2007 00:19:41 +0000 (00:19 +0000)]
Merge gl_HEADER_STRING_H_DEFAULTS and gl_STRING_MODULE_INDICATOR_DEFAULTS into
a single macro.

17 years agoNew module 'link-warning'.
Bruno Haible [Sat, 17 Feb 2007 22:21:32 +0000 (22:21 +0000)]
New module 'link-warning'.

17 years agoLine breaking.
Bruno Haible [Sat, 17 Feb 2007 19:43:30 +0000 (19:43 +0000)]
Line breaking.

17 years agoNew module 'tmpfile'.
Bruno Haible [Sat, 17 Feb 2007 15:04:50 +0000 (15:04 +0000)]
New module 'tmpfile'.

17 years agoMake use of _O_TEMPORARY on native Woe32 platforms.
Bruno Haible [Fri, 16 Feb 2007 02:58:04 +0000 (02:58 +0000)]
Make use of _O_TEMPORARY on native Woe32 platforms.

17 years agoTests for module 'mbspcasecmp'.
Bruno Haible [Thu, 15 Feb 2007 03:07:54 +0000 (03:07 +0000)]
Tests for module 'mbspcasecmp'.

17 years agoNew module 'mbspcasecmp'.
Bruno Haible [Thu, 15 Feb 2007 03:07:04 +0000 (03:07 +0000)]
New module 'mbspcasecmp'.

17 years agoTests for module mbsncasecmp.
Bruno Haible [Thu, 15 Feb 2007 03:06:14 +0000 (03:06 +0000)]
Tests for module mbsncasecmp.

17 years agoTests for module 'mbsncasecmp'.
Bruno Haible [Thu, 15 Feb 2007 03:02:54 +0000 (03:02 +0000)]
Tests for module 'mbsncasecmp'.

17 years agoNew module 'mbsncasecmp'.
Bruno Haible [Thu, 15 Feb 2007 02:57:13 +0000 (02:57 +0000)]
New module 'mbsncasecmp'.

17 years ago* lib/exclude.c (FNM_EXTMATCH): Define if system does not.
Paul Eggert [Thu, 15 Feb 2007 00:29:06 +0000 (00:29 +0000)]
* lib/exclude.c (FNM_EXTMATCH): Define if system does not.
Verify that it doesn't overlap with our flags.
(fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
do not have the desired effect in multibyte locales; instead, use
mbscasecmp.
* modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
we don't require GNU fnmatch ourselves (if our users require it, they
should do so explicitly).

17 years agoRemove stray underscore in previous change.
Paul Eggert [Thu, 15 Feb 2007 00:18:16 +0000 (00:18 +0000)]
Remove stray underscore in previous change.

17 years agoFix regex code so it doesn't rely on strcasecmp.
Paul Eggert [Thu, 15 Feb 2007 00:16:55 +0000 (00:16 +0000)]
Fix regex code so it doesn't rely on strcasecmp.
* lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
Otherwise, include gnulib's langinfo.h.
* lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
undesirable behavior in non-C locales.  Instead, rely on locale_charset.
* m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
* modules/regex (FILES): Remove m4/codeset.m4.
(Depends-on): Add localcharset.  Remove strcase.

17 years ago* m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
Ralf Wildenhues [Tue, 13 Feb 2007 23:20:02 +0000 (23:20 +0000)]
* m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
* m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.

17 years agoFix m4 underquoting bug, discovered by Ralf Wildenhues.
Bruno Haible [Tue, 13 Feb 2007 22:49:23 +0000 (22:49 +0000)]
Fix m4 underquoting bug, discovered by Ralf Wildenhues.

17 years agoTurn link errors into link-time warnings.
Bruno Haible [Tue, 13 Feb 2007 01:38:45 +0000 (01:38 +0000)]
Turn link errors into link-time warnings.

17 years agoFix an m4 quoting bug.
Bruno Haible [Mon, 12 Feb 2007 23:39:41 +0000 (23:39 +0000)]
Fix an m4 quoting bug.

17 years agoNeeded for tests of modules 'mbscasestr' and 'mbscasecmp'.
Bruno Haible [Mon, 12 Feb 2007 23:24:25 +0000 (23:24 +0000)]
Needed for tests of modules 'mbscasestr' and 'mbscasecmp'.

17 years ago* lib/string_.h (strncasecmp): Fix typo: this macro takes 3
Paul Eggert [Mon, 12 Feb 2007 19:06:30 +0000 (19:06 +0000)]
* lib/string_.h (strncasecmp): Fix typo: this macro takes 3
args, not 2.

2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>

17 years agoNew module 'time', so that apps can include <time.h> as per
Paul Eggert [Mon, 12 Feb 2007 18:49:19 +0000 (18:49 +0000)]
New module 'time', so that apps can include <time.h> as per
POSIX and GNU instead of separate include files like time_r.h
and timegm.h.  This implementation tries out a simpler approach
for replacing decls in standard include files (as compared to
the string module), somewhat as an experiment.

* config/srclist.txt: Comment out mktime.c for now.
* doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
since it doesn't apply any more.  Use generic wording instead.
* MODULES.html.sh (Support for systems lacking POSIX:2001): New module
'time'.
* lib/time_.h, m4/time_h.m4, modules/time: New files.
* lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
* lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
Don't include <sys/types.h>; no longer needed since we assume C89.
* lib/mktime.c: Don't include "time_r.h"; no longer needed.
* lib/strftime.c: Likewise.
* lib/time_r.c: Likewise.
* lib/nanosleep.c (nanosleep): #undef after include files, not before.
* lib/nanosleep.c: Include <time.h> first, to check interface.
* lib/strptime.c: Likewise.
* lib/time_r.c: Likewise.
* lib/timegm.c: Likewise.
* lib/strptime.c: Don't include strptime.h or time_r.h; no longer
needed.
* lib/timegm.c: Don't include timegm.h; no longer needed.
* lib/timespec.h: Don't include <sys/time.h> before <time.h>;
time.h now handles any problems in that area.
(struct timespec, nanosleep): Remove; time.h now arranges for these.
* lib/xnanosleep.c: Don't include timespec.h; no longer needed now
that time.h defines struct timespec.
* m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
handles that.
* m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
* m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
needed.  Set REPLACE_LOCALTIME.
* m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
* m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
(gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
nanosleep; time_h.m4 now does that.  Don't require
gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
module handles this now.
* modules/getdate (Depends-on): Remove timespec.  Add time.
* modules/nanosleep (Depends-on): Likewise.
* modules/stat-time (Depends-on): Likewise.
* modules/nanosleep (Include): Include time.h, not timespec.h.
* modules/strptime (Files): Remove lib/strptime.h.
(Depends-on): Add extensions, time.
(Include): Include time.h, not strptime.h.
* modules/time_r (Files): Remove lib/time_r.h.
(Depends-on): Add time.
(Include): Include time.h, not time_r.h.
* modules/timegm: Likewise.
* modules/timespec (Description): Now does timespec-related decls
of our own, instead of struct timespec itself.
(Depends-on): Add time; remove extensions.
(Maintainer): Add self.
* modules/utimecmp (Depends-on): Add time; remove timespec.
* modules/utimens (Depends-on): Likewise.
* modules/xnanosleep (Depends-on): Likewise.

17 years agoOptimize memory allocation to use alloca when possible.
Bruno Haible [Mon, 12 Feb 2007 02:58:17 +0000 (02:58 +0000)]
Optimize memory allocation to use alloca when possible.

17 years agoInclude <string.h>.
Bruno Haible [Mon, 12 Feb 2007 02:51:37 +0000 (02:51 +0000)]
Include <string.h>.

17 years agoupdate from texinfo
Karl Berry [Mon, 12 Feb 2007 00:43:52 +0000 (00:43 +0000)]
update from texinfo

17 years agoFix bug. Remove unnecessary strlen call.
Bruno Haible [Sun, 11 Feb 2007 22:38:58 +0000 (22:38 +0000)]
Fix bug. Remove unnecessary strlen call.

17 years agoTests for module 'mbsspn'.
Bruno Haible [Sun, 11 Feb 2007 22:38:25 +0000 (22:38 +0000)]
Tests for module 'mbsspn'.

17 years agoCosmetic tweak.
Bruno Haible [Sun, 11 Feb 2007 22:34:50 +0000 (22:34 +0000)]
Cosmetic tweak.

17 years agoTests for module 'mbspbrk'.
Bruno Haible [Sun, 11 Feb 2007 22:32:03 +0000 (22:32 +0000)]
Tests for module 'mbspbrk'.

17 years agoSmall optimization.
Bruno Haible [Sun, 11 Feb 2007 22:30:04 +0000 (22:30 +0000)]
Small optimization.

17 years agoTests for module 'mbscspn'.
Bruno Haible [Sun, 11 Feb 2007 22:27:18 +0000 (22:27 +0000)]
Tests for module 'mbscspn'.

17 years agoTests for module 'mbscasecmp'.
Bruno Haible [Sun, 11 Feb 2007 21:44:25 +0000 (21:44 +0000)]
Tests for module 'mbscasecmp'.

17 years agoEnsure O(n) worst-case complexity of mbscasestr.
Bruno Haible [Sun, 11 Feb 2007 21:33:27 +0000 (21:33 +0000)]
Ensure O(n) worst-case complexity of mbscasestr.

17 years agoTests for module 'mbscasestr'.
Bruno Haible [Sun, 11 Feb 2007 21:31:59 +0000 (21:31 +0000)]
Tests for module 'mbscasestr'.

17 years agoEnsure O(n) worst-case complexity of mbsstr.
Bruno Haible [Sun, 11 Feb 2007 19:23:52 +0000 (19:23 +0000)]
Ensure O(n) worst-case complexity of mbsstr.

17 years agoTests for module 'mbsstr'.
Bruno Haible [Sun, 11 Feb 2007 19:16:21 +0000 (19:16 +0000)]
Tests for module 'mbsstr'.

17 years agoFix bug.
Bruno Haible [Sun, 11 Feb 2007 17:45:10 +0000 (17:45 +0000)]
Fix bug.
Add tests.

17 years agoTests for module 'mbsrchr'.
Bruno Haible [Sun, 11 Feb 2007 17:44:14 +0000 (17:44 +0000)]
Tests for module 'mbsrchr'.

17 years agoFix bug.
Bruno Haible [Sun, 11 Feb 2007 17:41:22 +0000 (17:41 +0000)]
Fix bug.
New tests.

17 years agoTests for module 'mbschr'.
Bruno Haible [Sun, 11 Feb 2007 17:40:57 +0000 (17:40 +0000)]
Tests for module 'mbschr'.