diff options
author | Bastien Nocera <hadess@hadess.net> | 2008-08-27 23:23:23 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@src.gnome.org> | 2008-08-27 23:23:23 +0000 |
commit | 5e2a6047ea280145aac22fbcc1239e2d33c33934 (patch) | |
tree | d4906e962a2f2b1a6510ef40bfb55d1e007d9993 /ChangeLog | |
parent | 32947a3b4a393c9485279e1b0fa8e700ac975438 (diff) |
Bug 548612 – g_strstr_len() should use memmem when available
2008-08-28 Bastien Nocera <hadess@hadess.net>
Bug 548612 – g_strstr_len() should use memmem when available
* configure.in: detect whether memmem is available in the C library
* glib/gstrfuncs.c (g_strstr_len): use memmem for g_strstr_len() if
available in it's available, as it could be optimised by the C library
* tests/string-test.c (main): Add a few tests for g_strstr_len()
svn path=/trunk/; revision=7407
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,12 @@ +2008-08-28 Bastien Nocera <hadess@hadess.net> + + Bug 548612 – g_strstr_len() should use memmem when available + + * configure.in: detect whether memmem is available in the C library + * glib/gstrfuncs.c (g_strstr_len): use memmem for g_strstr_len() if + available in it's available, as it could be optimised by the C library + * tests/string-test.c (main): Add a few tests for g_strstr_len() + 2008-08-27 Tor Lillqvist <tml@novell.com> * glib/giowin32.c: Stylistic changes. Plug an unlikely memory leak |