In Test/System.ServiceModel:
[mono-project.git] / eglib / ChangeLog
blobe1d53d58fd43a2dae38d7997d7ef9cd035f408ae
1 2009-09-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
3         * test/queue.c: new tests.
4         * src/gqueue.c: fixed pop_head.
6 2009-09-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
8         * src/gqueue.c: add g_queue_push_tail.
10 2009-06-20  Zoltan Varga  <vargaz@gmail.com>
12         * src/glib.h: Add GUINT32_FROM/TO_BE macros.
14 2009-06-09  Jonathan Chambers <joncham@gmail.com>
15         
16         * CMakeLists.txt: Add start of CMake build.
17         * src/CMakeLists.txt: Add start of CMake build.
18         
19         Contribution is licensed as MIT/X11.
21 2009-06-02  Bill Holmes  <billholmes54@gmail.com>
23         * src/gpath.c (g_find_program_in_path):  While searching on Windows
24           also try additional suffixes .exe, .cmd, .bat, and.com.
26         Contributed under MIT/X11 license.
28 2009-05-27  Geoff Norton  <gnorton@novell.com>
30         * src/gfile-posix.c: Fix g_get_current_dir on amd64
32 2009-04-22  Jeffrey Stedfast  <fejj@novell.com>
34         * src/gtimer-win32.c (g_timer_elapsed): Avoid re-querying freq by
35         just saving it in a static variable. Also modified microseconds
36         calculation to avoid overflow.
38 2009-04-05  Miguel de Icaza  <miguel@novell.com>
40         * src/gpath.c: Avoid situations where we add the separator if one
41         of the elements is the separator.
43 2009-04-02  Miguel de Icaza  <miguel@novell.com>
45         * src/gpath.c: If the first element is NULL, return an empty
46         string. 
48 2009-02-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
50         * src/gstr.c: use memset in g_strnfill.
52 2009-01-19  Bill Holmes  <billholmes54@gmail.com>
54         * src/gstr.c (g_strnfill):  Fixing a warning for MSVC.
56         Contributed under MIT/X11 license.
58 2009-02-05  Miguel de Icaza  <miguel@novell.com>
60         * src/gstr.c: Add g_strnfill
62         * src/glib.h: Add g_list_previous
64 2009-01-19  Bill Holmes  <billholmes54@gmail.com>
66         * gmisc-win32.c (g_path_is_absolute):  Adding support for UNC
67           paths on Windows.
69         Contributed under MIT/X11 license.
71 2009-01-08  Bill Holmes  <billholmes54@gmail.com>
73         * winconfig.h, src/gfile-posix.c :
74           Fixing the MSVC builds.
76         Contributed under MIT/X11 license.
78 2009-01-07  Miguel de Icaza  <miguel@novell.com>
80         * src/gfile-posix.c: Move g_get_current_dir, as it is a
81         POSIX-esque feature, and some other systems do not have current
82         directories. 
84         * src/glib.h (G_LOCK_DEFINE, G_LOCK_DEFINE_STATIC): 
86         Embedded support from Paolo's work on quack.
87         
88         * configure.ac: check for strtok_r, langinfo.h and iconv.h
89         
90         * src/gpath.c (strtok_r): Add a strtok_r implementation if it is
91         not available on the target system.
93 2008-11-05  Bill Holmes  <billholmes54@gmail.com>
95         * src/gutf8.c, src/unicode-data.h, src/gunicode.c :
96           Fixing the MSVC builds.
98         Contributed under MIT/X11 license.
100 2008-11-04  Atsushi Enomoto  <atsushi@ximian.com>
102         * src/gutf8.c, src/gunicode.c, src/glib.h:
103           implemented g_unichar_type(), g_unichar_toupper(),
104           g_unichar_tolower(), g_unichar_totitle(), g_utf8_strup()
105           and g_utf8_strdown(). Fixed some surrogate pair bugs.
106         * TODO : removed implemented things.
107         * test/unicode.c, test/tests.h, test/utf8.c, test/Makefile.am:
108           added new tests.
110 2008-11-04  Atsushi Enomoto  <atsushi@ximian.com>
112         * src/unicode-data.h : new header for some new unicode manipulation
113           functions.
115 2008-10-17  Miguel de Icaza  <miguel@novell.com>
117         * Allow types to be defined on the eglib-config.h file, that could
118         be a platform specific generated type file.
120         * gtimer.c: split functionality in platforms.
122 2008-10-13  Bill Holmes  <billholmes54@gmail.com>
124         * src/gdate-win32.c : Fix compiler errors for MSVC.
126         * src/gpath.c : Fix compiler errors for MSVC.
128         * src/gfile-posix.c : Adding declaration for mkstemp for the win 32
129           implementation in gfile-win32.c.
131         Contributed under MIT/X11 license.
133 2008-10-11  Miguel de Icaza  <miguel@novell.com>
135         * gtimer.c: Same process.
137         * src/glib.h: Move g_strdup here, to consolidate all allocations
138         in this header, will help for merging the allocation work later. 
140         * src/gpattern.c (compile_pattern): From Unity, use -1 in the enum
141         for MatchType.
143         * src/gpath.c: Split this one as well.
145         * src/gmodule-win32.c, src/gmisc-unix.c, src/gmisc-win32.c,
146         src/gmodule-unix.c: split functionality in platforms.
147         
148         * src/goutput.c (g_logv): On some platforms, before we abort we
149         want to flush the stdout/stderr.
151 2008-10-10  Miguel de Icaza  <miguel@novell.com>
153         * Split functionality that is operating system specific into
154         -win32.c, -unix.c and -posix.c 
156         * Use g_malloc everywhere, and g_free, so that these can be easily
157         overwritten consistently.
159 2008-09-16  Bill Holmes  <billholmes54@gmail.com>
161         * src/gunicode.c : Fix a warning.
163         Contributed under MIT/X11 license.
165 2008-08-28  Bill Holmes  <billholmes54@gmail.com>
167         * src/glib.h : Adding a c++ definition for G_BEGIN_DECLS.
169         Contributed under MIT/X11 license.
171 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
173         * glib.h, gunicode.c : Fixing some compiler errors.
175         Contributed under MIT/X11 license.
177 2008-08-20  Mike Voorhees <vernish13@gmail.com>
179         * Patch from Mike Voorhees to fix various problems with
180         g_utf8_validate compared to the glib implementation and unit tests
181         to ensure that there are no regressions.
183         From a mailing list post to mono-devel-list on August 19th, 2008
185         [Mono-dev] utf8 related patches. Please review.
187 2008-08-20  Mike Voorhees  <vernish13@gmail.com>
189         * src/glib.h : Adding declarations for g_utf8_strlen, g_utf8_get_char,
190         and g_utf8_next_char.
192         * src/gunicode.c : Adding implementation for g_utf8_strlen, g_utf8_get_char,
193         and g_utf8_next_char.
195         * src/gunicode.c : Rewrote g_utf8_validate.
197         * test/utf8.c Adding tests for g_utf8_strlen, g_utf8_get_char,
198         g_utf8_next_char, and g_utf8_validate.
200         Contributed under MIT/X11 license.
201         
202 2008-08-05  Andreas Faerber  <andreas.faerber@web.de>
204         * autogen.sh: Suppress arguments warning for NOCONFIGURE.
205         
206         Contributed under MIT/X11 license.
208 2008-08-04  Bill Holmes  <billholmes54@gmail.com>
210         * test/tests.h, test/Makefile.am, test/memory.c : Adding memory tests to test
211           allocation routines return NULL when 0 size is passed in.
213         Contributed under MIT/X11 license.
215 2008-08-04  Bill Holmes  <billholmes54@gmail.com>
217         * src/glib.h : Changing the allocation routines to return null if 0 size is
218           passed in.
220         Contributed under MIT/X11 license.
222 2008-06-16  Zoltan Varga  <vargaz@gmail.com>
224         * src/vasprintf.c (vasprintf): Applied patch from Michail Ushakov 
225         <migelU@gmail.com>. Workaround broken vsnprintf on windows. Fixes
226         #400445.
228 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
230         * src/goutput.c (g_log): Remove unnecessary and incorrect call to 
231         g_strdup_printf (). Fixes #398918.
233 2008-05-01  Bill Holmes  <billholmes54@gmail.com>
235         * src/glib.h : Adding declarations for g_ucs4_to_utf16 and g_utf16_to_ucs4.
237         * src/gutf8.c : Adding implementation for g_ucs4_to_utf16 and g_utf16_to_ucs4.
239         * test/utf8.c Adding tests for g_ucs4_to_utf16 and g_utf16_to_ucs4.
241         Contributed under MIT/X11 license.
243 2008-04-20  Geoff Norton  <gnorton@novell.com>
245         * src/gspan.c: Fix the _NSGetEnviron define to prevent an impropoer
246         pointer dereference.
248 2008-03-19  Bill Holmes  <billholmes54@gmail.com>
250         * src/gpath.c (g_path_is_absolute) : Adding a case for '/'
251           on Windows.
252         
253         * src/gpath.c (g_get_user_name) : On Windows add a check for %USERNAME%
254           when %USER% fails.
256         * src/gstr.c (g_strsplit, g_strsplit_set):  Change to remove truncation
257           errors with MSVC build.
259         * src/gstr.c (g_filename_to_uri, g_filename_from_uri):  Fixes to handle
260           Windows paths.
262         * src/gstr.c (g_ascii_strncasecmp):  Convert each character to lower case
263           before comparing.
265         * src/gunicode.c (g_get_charset):  Implement for Windows.
267         Contributed under MIT/X11 license.
269 2008-03-12  Geoff Norton  <gnorton@novell.com>
271         * src/gutf8.c: Implement g_ucs4_to_utf16 and g_utf16_to_ucs4 as
272         asserts.  They're needed to build mono with eglib.
273         * src/gutil.h: Add a few missing function declarations to the header.
274         * src/gspawn.c: Some darwin implementations don't have crt_externs.h
275         So we'll just define _NSGetEnviron() ourselves.
276         * Makefile.am: Dont build test when cross compiling.
277         * configure.ac: Define CROSS_COMPILING when cross compiling.
278         Undefine _FORTIFY_SOURCE on arm-apple-darwin as the headers it 
279         requires are not available.
281 2008-01-15  Andreas Faerber  <andreas.faerber@web.de>
283         * configure.ac: Add default G_BREAKPOINT implementation.
284         Fix typo in breakpoint CPU output.
286 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
288         * src/glib.h: Include <limits.h>. Fixes #350482.
290 2007-11-21  Dick Porter  <dick@ximian.com>
292         * src/gslist.c (g_slist_find_custom): Implement
294         * src/glist.c (g_list_find_custom): Implement
296         * test/list.c: Test g_list_find_custom()
298         * test/slist.c: Test g_slist_find_custom()
300 2007-11-20  Dick Porter  <dick@ximian.com>
302         * src/gstr.c: Implement g_strsplit_set() and re-implement
303         g_strsplit() so it passes the additional tests. (g_strsplit()
304         should treat multi-char delimiters as just a single token, rather
305         than a set of delimiters.)
307         * src/gslist.c: Implement g_slist_index(), g_slist_nth() and
308         g_slist_nth_data().
310         * test/string-util.c: Test g_strsplit_set() and more tests for
311         g_strsplit().
313         * test/slist.c: Test g_slist_nth() and
314         g_slist_index().
316 2007-11-06  Geoff Norton  <gnorton@novell.com>
318         * configure.ac: Check for libiconv_open as the previous check was failing against 
319         some versions of libiconv.
321 2007-11-06  Andreas Faerber  <andreas.faerber@web.de>
323         * test/Makefile.am: Fix noinst_PROGRAMS for automake 1.6.3
324                             Add support for VPATH
326 2007-11-06  Geoff Norton  <gnorton@novell.com>
328         * configure.ac: Determing if glib-2.0 is installed and set HAVE_GLIB appropriately
329         * test/Makefile.am: Only build test-glib if glib-2.0 is available
331 2007-11-05  Geoff Norton  <gnorton@novell.com>
333         * configure.ac: Check for getpwent_r and wether libiconv is needed to be linked.
334         Also look to see if we can use export-dynamic in the test suite.
335         * test/Makefile.am: Get LDFLAGS from configure instead of setting them.
336         * src/gerror.c: Implement g_clear_error.
337         * src/glib.h: Only use the format, ... convention is HAVE_C99_SUPPORT is available.
338         * src/gpath.c: Only use the getpwent_r codepath if getpwent_r is available.
339         * src/gspawn.c: Define environ to call _NSGetEnviron() on Apple.
340         * src/Makefile.am: Remove -Werror so we dont fail on different function declarations.
341                 Portions of all of the above are from Andreas Faerber & Jonathan Chambers
342         
343 2007-10-31  Jonathan Chambers <joncham@gmail.com>
344         
345         * src/ghashtable.c: Add g_hash_table_foreach_steal.
346         * src/garray.c: Add g_array_remove_index_fast.
347         * src/gpath.c (g_path_is_absolute): Handle windows paths.
348         * src/glib.h: Add g_hash_table_foreach_steal and g_array_remove_index_fast
349         
350         Contribution is licensed as MIT/X11.
352 2007-06-13  Jonathan Chambers <joncham@gmail.com>
353         
354         * src/gunicode.c: Add g_unichar_isxdigit and g_unichar_xdigit_value.
355         * src/gmisc.c: Add g_win32_getlocale stub.
356         * src/glib.h: Add declarations of above functions,
357         GFreeFunc typedef, and CLAMP, GUINT_TO_LE, and threading
358         macros.
359         
360         * test/string-util.c: Fix warning.
361         * test/utf8.c: Add test for g_unichar_xdigit_value.
362         
363         Contribution is licensed as MIT/X11.
365 2007-05-05  Aaron Bockover  <abockover@novell.com>
367         * src/gstr.c:
368         * src/glib.h: Added g_ascii_tolower implementation; make g_ascii_strdown
369         use it to do the transformation
371         * test/string-util.c: Added a test for g_ascii_strdown
373 2007-04-27  Jonathan Chambers <joncham@gmail.com>
374         
375         * src/gstr.c: Fix off by one error in g_strdup allocation.
377 2007-04-27  Jonathan Chambers <joncham@gmail.com>
378         
379         * src/eglib-config.hw: Forgot to add for msvc build.
380         * src/vasprintf: Forgot to add for msvc build.
382 2007-04-27  Jonathan Chambers <joncham@gmail.com>
383         
384         * src/gstr.c: Fix off by one error for NULL terminator.
386 2007-04-27  Jonathan Chambers <joncham@gmail.com>
387         
388         Combined patch from Michael Jerris <mike@jerris.com> and me.
389         * winconfig.h: Config file for msvc builds.
390         * configure.ac: Add AC_CHECK_HEADERS for getopt.h,  sys/time.h,
391         sys/wait.h, and pwd.h.
392         
393         * src/gspawn.c: Include config.h and use HAVE_* macros.
394         * src/eglib-config.h.in: Add inclusion guards.
395         * src/ghashtable.c: Fix warnings.
396         * src/gmisc.c: Windows implementation of g_getenv, g_setenv,
397         and g_unsetenv.
398         * src/gpath.c: Include config.h and use HAVE_* macros.
399         * src/gmarkup.c: Fix warnings.
400         * src/gptrarray.c: Fix warnings.
401         * src/gstr.c: Fix warnings and use HAVE_* macros.
402         * src/glib.h: Move macros to eglib-config.h and include it.
403         * src/gdate.c: Implement g_get_current_time on windows.
404         * src/gpattern.c: Fix warnings.
405         * src/gdir.c: Implement g_dir on windows.
406         * src/gfile.c: Implement mkstemp and g_file_test on windows.
407         * src/gtimer.c: Implement g_timer on windows.
408         * src/gmodule.c: Fix warnings.
409         * src/gunicode.c: Fix warnings.
410         * src/gutf8.c: Fix warnings.
411         
412         * test/ptrarray.c: Fix warnings.
413         * test/string.c: Fix warnings.
414         * test/list.c: Fix warnings.
415         * test/pattern.c: Use HAVE_* macros.
416         * test/dir.c: Use HAVE_* macros.
417         * test/file.c: Use HAVE_* macros and use system specific files for tests.
418         * test/test.c: Fix warnings and use HAVE_* macros.
419         * test/timer.c: Use HAVE_* macros.
420         * test/string-util.c: Fix warnings.
421         * test/test.h: Supress warnings on msvc.
422         * test/module.c: Use HAVE_* macros.
423         * test/utf8.c: Fix warnings.
424         * test/spawn.c: Use HAVE_* macros.
425         * test/driver.c: Fix warnings and use HAVE_* macros.
426         * test/path.c: Use HAVE_* macros and use system specific files for tests.
427         * test/sizes.c: Fix warnings.
429 2007-04-24  Jonathan Chambers <joncham@gmail.com>
430         
431         Patch from Michael Jerris <mike@jerris.com>
432         * src/gspawn.c: Start msvc build.
433         * src/gpath.c: Start msvc build.
434         * src/gmarkup.c: Start msvc build.
435         * src/gshell.c: Start msvc build.
436         * src/gstr.c: Start msvc build.
437         * src/glist.c: Start msvc build.
438         * src/glib.h: Start msvc build.
439         * src/gdate.c: Start msvc build.
440         * src/gpattern.c: Start msvc build.
441         * src/gdir.c: Start msvc build.
442         * src/gfile.c: Start msvc build.
443         * src/gtimer.c: Start msvc build.
444         * src/gmodule.c: Start msvc build.
445         * src/gunicode.c: Start msvc build.
447 2007-01-27  Robert Jordan  <robertj@gmx.net>
449         * test/Makefile.am: Add linker option to be able to
450         load symbols from the main program.
451         * test/module.c: Clean-ups.
453 2007-01-26  Robert Jordan  <robertj@gmx.net>
455         * configure.ac: Add PLATFORM_WIN32 conditional.
456         * src/Makefile.ac: Use PLATFORM_WIN32 conditional for psapi, iconv
457         * test/module.c, test/tests.h, test/Makefile.am: New test for gmodule.
458         * src/gmodule.h: Add G_MODULE_{IMPORT|EXPORT} defines.
459         * src/gmodule.c (g_module_symbol): Implement in-proc symbol lookup
460         for Win32.
461         * src/gmodule.c: Add GModule.main_module, consider it in
462         g_module_close ().
463         * src/gpath.c (g_get_home_dir): Add dummy Win32 implementation to
464         fix the build.
466 2006-11-03  Miguel de Icaza  <miguel@novell.com>
468         * src/gpath.c (g_path_get_dirname): If the pathname starts with a
469         "/", return the "/".
471         * test/string-util.c (test_strlcpy): Add new test.
473         * src/gunicode.c (g_filename_from_utf8): g_strlcpy needs the full
474         size, with the extra zero at the end;  Fixes the stack trace
475         issue. 
477 2006-10-30  Miguel de Icaza  <miguel@novell.com>
479         * test/utf8.c (test_utf8_seq): Add new failing test.
481 2006-10-30  Atsushi Enomoto  <atsushi@ximian.com>
483         * src/gutf8.c : several fixes:
484           - fixed incorrect mb_size clear and mb_remain computation.
485           - initialize items_written to 0 for error case.
486           - in utf8_to_utf16_len differentiate error messages completely.
487           - in g_utf8_to_utf16 use guchar instead of gchar.
488         * test/utf8.c : added test case string in test_utf8_seq() to
489           both test_utf8_to_utf16() and test_utf16_to_utf8().
491 2006-10-21  Miguel de Icaza  <miguel@novell.com>
493         * src/gunicode.c (g_filename_from_utf8): Use g_strlcpy here. 
495         * src/gmarkup.c (g_markup_parse_context_parse): Do not dereference
496         null values here.   This gets things a little bit further in
497         corlib, but not too far.
499         * src/gdir.c (g_dir_read_name): Do not return . or ..
501         * src/gstr.c (g_ascii_xdigit_value): Make this into a function,
502         thanks to Paolo for pointing the problem with the double macro
503         expansion. 
505         * src/gmodule.c (g_module_open): Actually return NULL if we fail
506         to load the module (was hiding the real bug in the pinvoke tests).
508         (g_module_build_path): Do not prepend "lib" if the "lib" is part
509         of the call.
511         * src/gstr.c (g_strsplit): this routine has some non-expected
512         behavior, if the string begins with the delimiter, it will return
513         an empty first string, unlike strtok
515         * src/gpath.c (g_path_get_dirname): Return "." as a dirname for
516         paths that do not contain a directory.
518 2006-10-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
520         * test/array.c: new test for insertion in the middle of other values.
521         * src/garray.c: fixed destination index.
523 2006-10-18  Miguel de Icaza  <miguel@novell.com>
525         * src/gpath.c (g_build_path): Do not append terminator if the next
526         string is empty.
528         * src/gutf8.c (g_utf8_to_utf16): Include trailing zero as
529         documented.
530         (g_utf16_to_utf8): Include trailing zero as documented.
532 2006-10-17  Miguel de Icaza  <miguel@novell.com>
534         * src/gstr.c (g_strdown): Actually move.
536         * src/gmarkup.c (g_markup_parse_context_parse): Accept dots in the
537         sequence, reset the state after a closing element.
539         * src/garray.c (g_array_insert_vals): Shift the elements the
540         correct amount.
542         (g_array_insert_vals): Should actually use the
543         number of elements to insert.
545         * test/array.c: Add new test case, this was happening in the JIT. 
547         * Add _GNU_SOURCE at configure time, remove from sources.
548         
549         * src/gstr.c (g_strsplit): Empty strings return a 0 value vector.
551         * src/glib.h (G_MAXINT64, G_MININT64): Add another set of macros
552         for the support stuff.
553         
554         Move private prototypes elsewhere
556         * src/glib.h (g_thread_init): Adding missing brace
557         (g_list_next): remove ; from the macro definition.
559 2006-10-17  Miguel de Icaza  <miguel@novell.com>
561         * src/gutf8.c: internal methods
563         * src/ghashtable.c: internal methods.
565 2006-10-16  Miguel de Icaza  <miguel@novell.com>
567         * src/gerror.c (g_propagate_error): Implement.
569         * src/gstr.c (g_strjoinv, g_ascii_strncasecmp): implement.
571         * test/string-util.c (test_ascii_strncasecmp): test
573 2006-10-15  Miguel de Icaza  <miguel@novell.com>
575         * configure.in: Fix detection of platforms the [3456] stuff does
576         not work inside autoconf.
578         * src/eglib-config.h.in: Make G_BREAKPOINT into a function-macro
580         * src/glib.h (offsetof): Mono sources depend on this, bring this
581         from the standard definition.  Redefine G_STRUCT_OFFSET in terms
582         of this. 
583         
584         * src/glib.h (G_STRUCT_OFFSET): fix macro definition. 
585         fix typo.
587         * src/sizes.c: Add test.
589         * src/gshell.c: Make it build
590         
591 2006-10-14  Miguel de Icaza  <miguel@novell.com>
593         * src/glib.h: add various _TO_LE and _FROM_LE macros.
595         * test/endian.c: tests for endian conversion macros.
597 2006-10-09  Miguel de Icaza  <miguel@novell.com>
599         * src/gmodule.h: Move definitions of gmodule to gmodule.h because
600         Mono expects it there.
602 Mon Oct 9 12:59:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
604         * src/ghashtable.c: s/to_prime/g_spaced_primes_closest/g
605         and put the array in readonly memory.
606         * src/gstr.c: fixed the build and made array const.
607         * src/gmodule.c: fixed thinko.
609 2006-10-08  Miguel de Icaza  <miguel@novell.com>
611         * src/gstr.c (g_strdup): should allow NULL as an argument.
613 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
615         * test/string-util.c:
616         * TODO:
617         * src/gstr.c:
618         * src/glib.h: implemented g_strescape.
620 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
622         * test/string-util.c:
623         * configure.ac:
624         * TODO:
625         * src/gstr.c:
626         * src/glib.h: implemented g_strlcpy.
628 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
630         * test/string-util.c:
631         * TODO:
632         * src/gstr.c:
633         * src/glib.h: implemented g_strdelimit.
635 2006-10-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
637         * test/spawn.c: add search path flag when running ls.
638         * src/gspawn.c: g_spawn_command_line_sync searches the program in the
639         PATH if it's not an absolute path.
641 2006-10-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
643         * test/string-util.c:
644         * src/glib.h: implement g_ascii_xdigit_value and tests.
646 2006-10-06  Miguel de Icaza  <miguel@novell.com>
648         * src/gstr.c (g_ascii_strdown): Implement.
650         * str/glib.c (g_log_set_handler): empty.
651         (g_printerr): empty.
652         (GMemVTable): define, empty, ignored.
653         (G_USEC_PER_SEC) :-)
655         * src/gunicode.c (g_convert): Add bytes_read, bytes_written
656         support;   Small fixes to avoid valgrind errors. 
657         
658         (g_utf8_validate): Add, based on the libxml code.
660         gstr.c: implement g_strdown. 
662 2006-10-05  Miguel de Icaza  <miguel@novell.com>
664         * src/gunicode.c: Some work in progress to implement g_convert
665         (which is needed by g_locale_to_utf8).    
667 2006-09-18  Miguel de Icaza  <miguel@novell.com>
669         * test/string-util.c (test_filename_from_uri): tests for new
670         methods.
672         * src/gstr.c (g_filename_to_uri, g_filename_from_uri): implement. 
674 2006-09-14  Atsushi Enomoto  <atsushi@ximian.com>
676         * src/gutf8.c, test/utf8.c : EOL fix.
678 2006-09-04  Miguel de Icaza  <miguel@novell.com>
680         * src/gmarkup.c: The leak fixing commit.
681         
682         * src/gmarkup.c (g_markup_parse_context_end_parse): Add missing
683         method. 
684         (g_markup_parse_context_free): Implement. 
685         (parse_attributes): Store the value, not the attribute name
686         twice. 
687         Properly check the /> section.
688         (g_markup_parse_context_parse): When checking for error, use the
689         "error!=NULL && *error != NULL" upon return from callbacks,
690         it is only then that its valid to check for *error for error
691         conditions. 
692         (g_markup_parse_context_parse): Add comment processing.
694         Only release one element of the list.
696         * test/markup.c: Incorporate the kind of code that is used in Mono
697         for domain loading;  Will test the rest later. 
699 2006-09-01  Miguel de Icaza  <miguel@novell.com>
701         * src/gmarkup.c (g_markup_parse_context_parse): Add text parsing
702         support, and end-element support; not tested yet.
704 2006-09-01 Atsushi Enomoto <atsushi@ximian.com>
706         * gutf8.c : bad allocation size. multiply sizeof gchar/gunichar2.
708 2006-09-01 Atsushi Enomoto <atsushi@ximian.com>
710         * gutf8.c : when error is null, utf8_to_utf16_len() and
711           utf16_to_utf8_len() could return -1, so return NULL for those
712           cases in g_utf8_to_utf16() and g_utf16_to_utf8().
714 2006-09-01  Miguel de Icaza  <miguel@novell.com>
716         * src/gmarkup.c: Builds and does minimal parsing.
718         * test/markup.c: Sample test cases I have been using
720 2006-08-31 Atsushi Enomoto <atsushi@ximian.com>
722         * src/gerror.h,
723           src/gerror.c : added g_set_error().
724         * src/gutf8.c :
725           g_utf8_to_utf16() and g_utf16_to_utf8() implementation.
726         * src/glib.h : added all above, and some dependent bits.
727         * src/Makefile.am : added gutf8.c.
728         * TODO: removed above.
729         * test/Makefile.am,
730           test/tests.h : added utf8 tests.
731         * test/utf8.c : test for g_utf8_to_utf16 and g_utf16_to_utf8.
732           It still needs more tests e.g. for multibytes.
734 2006-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
736         * src/gspawn.c: small touch-ups and make read/write EINTR-proof.
738 2006-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
740         * test/file.c: remove useless test.
742         * test/spawn.c: new g_spawn_async_with_pipes test.
743         * src/glib.h: Modified file.
744         * src/gspawn.c: implemented g_spawn_async_with_pipes. Needs fine tuning.
746 2006-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
748         * TODO: Modified file.
749         * test/tests.h:
750         * test/pattern.c:
751         * test/dir.c:
752         * test/Makefile.am:
753         * src/Makefile.am:
754         * src/glib.h:
755         * src/gdir.c:
756         * src/gfile.c: implemented g_dir_*, unix version.
758 2006-08-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
760         * src/glib.h:
761         * test/Makefile.am: Modified file.
762         * test/tests.h:
763         * src/Makefile.am: Modified file.
764         * test/pattern.c:
765         * src/gpattern.c: implemented the 3 pattern matching functions used.
767         * test/ptrarray.c: fix the compare function to work with qsort.
769         * test/file.c:
770         * test/path.c:
771         * src/gspawn.c:
772         * src/gpath.c: made valgrind happy.
774 2006-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
776         * test/file.c:
777         * src/glib.h:
778         * src/gfile.c:  implemented g_file_test. Changed the default mask to
779         .XXXXXX. Add tests.
781 2006-08-26  Raja R Harinath  <rharinath@novell.com>
783         * src/sort.frag.h (digit): Declare here based on externally
784         provided typedef 'list_node'.
785         (MAX_DIGITS): Use 'sizeof (list_node)'.
786         * src/gslist.c (list_node): Declare instead of 'digit'.
787         * src/glist.c: Likewise.
789         * test/slist.c (verify_sort): Verify the length of the list too.
790         (test_slist_sort): Free the correct list.
791         * test/list.c: Likewise.
792         * src/sort.frag.h (MAX_DIGITS): Rename from N_DIGITS.
793         (combine_sort): Change 'max_pos' argument to more natural
794         'n_digits'.
795         (increment): Likewise.  Use 'n_digits' to avoid reading at an
796         offset that hasn't been initialized.
797         (do_sort): Remove memset.
799 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
801         * TODO:
802         * test/file.c:
803         * src/glib.h:
804         * src/gfile.c: implement g_file_open_tmp.
806 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
808         * TODO:
809         * src/glib.h:
810         * src/gdate.c: New file.
811         * src/gfile.c: New file.
812         * src/Makefile.am: implemented g_file_get_contents and
813         g_get_current_time.
815         * test/tests.h:
816         * test/file.c: New file.
817         * test/Makefile.am: tests for the above.
819 2006-08-26  Raja R Harinath  <rharinath@novell.com>
821         * src/sort.frag.h: Add copyright notice and some explanation.
822         (increment): Remove null check.
823         (combine_digits): Add 'list' argument to seed the summation.
824         (do_sort): Use the empty or singleton tail as the seed, rather
825         than calling 'increment'.
827 2006-08-25  Raja R Harinath  <rharinath@novell.com>
829         * TODO: Remove 'List' entries.
830         * src/Makefile.am (libeglib_la_SOURCES): Add sort.frag.h.
831         * src/sort.frag.h: New.  Implements a "generic" bottom-up "counting"
832         mergesort that works both on singly- and doubly-linked lists.
833         * src/gslist.c (g_slist_sort): Use it.
834         * src/glist.c (g_list_sort): Likewise.
835         * src/glib.h (g_slist_sort, g_list_sort): Declare.
836         * test/slist.c, test/list.c: Add basic testcases.
838 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
840         * src/gspawn.c: propagate errors from reads.
841         * src/gpath.c: an empty PATH is like a NULL one.
843 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
845         * test/tests.h:
846         * test/timer.c:
847         * test/Makefile.am:
848         * TODO:
849         * src/glib.h:
850         * src/gtimer.c:
851         * src/Makefile.am: implemented GTimer.
853 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
855         * test/tests.h:
856         * test/Makefile.am:
857         * test/spawn.c:
858         * src/gspawn.c:
859         * src/glib.h:
860         * src/Makefile.am: initial implentation of g_spawn_command_line_sync.
861         Still need better error handling, but works for the most part.
863 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
865         * src/garray.c: grow faster so that the 'big' test does not crawl.
867 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
869         * test/shell.c:
870         * src/gqueue.c: plugged leaks.
872 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
874         * test/path.c:
875         * src/gpath.c: when PATH is not defined, the current dir is used.
876         See execvp(3).
878 2006-08-25  Alp Toker  <alp@atoker.com>
880         * src/gstr.c: g_strv_length() should return guint, not gint
881         * src/glib.h: Add g_strv_length() prototype
882         
883 2006-08-24  Miguel de Icaza  <miguel@novell.com>
885         * src/gpath.c (g_get_home_dir, g_get_tmp_dir, g_get_user_name,
886         g_get_prgname, g_set_prgname): implemented.
888         * test/ Fix leaks.
889         
890         * src/gpath.c (g_get_current_dir): Implement.
892         (g_find_program_in_path, g_path_is_absolute): implement.
893         
894         Add g_path_get_dirname, g_path_get_basename
896         * src/gpath.c: Path routines
898 2006-08-23  Miguel de Icaza  <miguel@novell.com>
900         * src/gerror.c: Implement. 
902         * src/glist.c (g_list_sort): Remove routine instead of hoping that
903         it wont crash when we run it.
905 2006-08-23  Raja R Harinath  <rharinath@novell.com>
907         * src/glist.c (g_list_insert_before): Avoid non-head declaration.
909         * test/slist.c (test_slist_insert_before): Add.
910         * src/gslist.c (g_slist_insert_before): Append if 'sibling' is null.
912         * test/list.c (test_list_insert_before): Add test for return value
913         of g_list_insert_before.
914         * test/Makefile.am (test_eglib_LDADD): Refer to the .la file so as
915         to rebuild test if eglib changes.
916         * src/glist.c (new_node, disconnect_node): New helpers that
917         maintain doubly-linked list invariants.
918         (g_list_prepend, g_list_append): Express in terms of new_node.
919         (g_list_insert_before): Likewise.  Fix return value when inserting
920         in the middle of the list.
921         (g_list_concat): Reorganize to make more compact.
922         (g_list_nth): Likewise.
923         (g_list_nth_data): Don't segfault if 'n' is too large.
924         (g_list_remove): Rewrite using _find and disconnect_node.
925         (g_list_remove_link): Don't traverse list: use disconnect_node.
926         (g_list_insert_sorted): Rewrite to make more compact.  Use new_node.
927         (g_list_copy): Likewise.
928         (_prepend, _concat): Remove.
929         * src/gslist.c (insert_after, find_prev, find_prev_link):
930         New helpers.
931         (g_slist_copy): Simplify slightly, using insert_after.
932         (g_slist_concat): Reorganize to make more compact.
933         (g_slist_find): Likewise.
934         (g_slist_insert_sorted): Likewise.
935         (g_slist_remove): Rewrite using find_prev.
936         (g_slist_remove_link): Rewrite using find_prev_link.
937         (g_slist_remove_all, g_slist_insert_before): New.
939 2006-08-21  Duncan Mak  <duncan@a-chinaman.com>
941         * src/gqueue.c: GQueue implementation.
942         * src/glib.h: Add prototypes.
943         * src/Makefile.am (libeglib_la_SOURCES): Include gqueue.c.
945         * test/queue.c:         
946         * test/Makefile.am (SOURCES):
947         * test/tests.h (DEFINE_TEST_GROUP_INIT_H): add tests for GQueue.
949 2006-08-21  Aaron Bockover  <abockover@novell.com>
951         * src/gstr.c: fixed bug/invalid read/write on malloc-only case (no
952         realloc/delimiter token not found); use memcpy instead of strncpy for
953         better performance
955         * test/test.c (run_group): allow running specific tests under a group;
956         added copied g_strsplit/g_strfreev from EGlib source as eg_strsplit
957         and eg_strfreev to avoid performance skews in the driver
958         
959         * test/driver.c: allow user-specified group name to contain specific
960         test to run under the group as 'group_name:test1,test2,...testN'
962         * test/string-util.c: Added more g_strsplit tests
964         * test/slist.c:
965         * test/ptrarray.c:
966         * test/fake.c:
967         * test/string.c:
968         * test/list.c:
969         * test/array.c:
970         * test/hashtable.c: make test names shorter (no need to prefix with
971         the group since it runs under the group)
973 2006-08-21  Miguel de Icaza  <miguel@novell.com>
975         * src/glib.h (g_hash_table_new_full): Add missing prototype.
976         Replace g_free(x) with plain free, so it can be used as a function
977         argument. 
978         Add ABS
980         * src/ghashtable.c: Add rehashing. 
982         * test/hashtable.c: Add a bunch of extra tests.
984         * src/goutput.c: Fix g_log so it actually formats the data. 
986         * src/ghashtable.c (g_hash_table_new): The glib test suite
987         uncovered a bunch of bugs, the g_hash_table_new should actually
988         have parameters.
990         (g_hash_table_remove, g_hash_table_foreach_remove): Fixed bugs
991         uncovered. 
993 2006-08-20  Aaron Bockover  <abockover@novell.com>
995         * src/gmisc.c: added g_setenv, g_getenv, g_unsetenv
997         * src/gstr.c: added g_snprintf, g_sprintf, g_fprintf, g_printf
999         * src/glib.h: added macros for above va_args printf functions
1001         * src/Makefile.am: added gmisc.c
1003         * test/whats-implemented: script to see what needs to be implemented
1005 2006-08-20  Chris Toshok  <toshok@ximian.com>
1007         * test/array.c (test_array_big): add a test from the glib
1008         documentation.
1010 2006-08-20  Chris Toshok  <toshok@ximian.com>
1012         * test/tests.h: add array tests to the mix.
1014         * test/array.c: a few array tests.
1016         * src/glib.h: add array prototypes.
1018         * src/garray.c: initial array foo.
1020         * test/Makefile.am (SOURCES): add array.c
1022         * src/Makefile.am (libeglib_la_SOURCES): add garray.c
1024 2006-08-19  Aaron Bockover  <abockover@novell.com>
1026         * src/gstring.c: optimize and generalize reallocation by providing
1027         a GROW_IF_NECESSARY macro, do not use strcpy/strcat as they are 
1028         very, very slow; GString is now much closer to GLib's implementation
1029         in terms of performance
1031         * test/string.c: added speed-specific tests to beat on reallocation code
1033         * test/test-both: run make if the test drivers don't exist
1035 2006-08-19  Jonathan Chambers  <jonathan.chambers@gmail.com>
1037         * src/gmodule.c: Add gmodule support for windows and fix
1038         windows build. Contribution is licensed as MIT/X11.
1039         
1040 2006-08-19  Aaron Bockover  <abockover@novell.com>
1042         * test/driver.c: Added --debug mode that allows for testing all paths
1043         of the driver without actually running real tests; runs only the 'fake'
1044         test, which does nothing; useful for running the driver through valgrind
1046         * test/Makefile.am:
1047         * test/tests.h:
1048         * test/fake.c: Added fake test for valgrinding the driver
1050         * test/ptrarray.c: update sort test
1052 2006-08-19  Aaron Bockover  <abockover@novell.com>
1054         * test/test-both: added --help
1056 2006-08-19  Aaron Bockover  <abockover@novell.com>
1058         * test/driver.c: added -n mode to show only raw global run times,
1059         which is useful for scripts (test-both --speed-compare)
1061         * test/test-both: added --speed-compare mode
1063         * test/README: updated with information on --speed-compare
1065 2006-08-19  Aaron Bockover  <abockover@novell.com>
1067         * test/test.c: do not print times if -t is not passed
1069         * test/driver.c: removed use of GList from the driver to avoid skews due
1070         to performance differences between GLib and EGLib
1071         
1072 2006-08-19  Aaron Bockover  <abockover@novell.com>
1074         * test/test.c: Perform iterations at the test level, only output one
1075         report for all iterations of tests in a group to produce more usable
1076         output; add timing for the tests and group; added get_timestamp for
1077         easy code timing
1079         * test/test.h: Removed run_test as it should only be called from 
1080         run_group, added get_timestamp
1082         * test/Makefile.am: Added -DDRIVER_NAME 
1084         * test/test-both: simple script to run both drivers with the same options
1086         * test/driver.c: Iterations are now run at the test level, show a global
1087         status (OK/FAIL) indicator
1089         * test/README: Updated
1091         * configure.ac: Renamed from configure.in as configure.in naming 
1092         convention is deprecated in favor of configure.ac
1094         * autogen.sh: s/configure.in/configure.ac/
1096 2006-08-19  Miguel de Icaza  <miguel@novell.com>
1098         * Makefile.am: Removed MAINTAINERCLEANFILES that was too
1099         aggresive, it failed make distcheck and the resulting tarball was
1100         not buildable.
1102         * src/glib.h: remove the various GPOINTER_TO_*, G*_TO_POINTER,
1103         GSIZE_FORMAT macros, and move them into src/eglib-config.h
1105         Moved also gssize and gsize to be arch specific.   This should fix
1106         the 32/64 problems that Jon Chambers reported. 
1108         * configure.in: test for pointer size, define the various values
1109         depending on 32 vs 32/64 worlds, might need further porting in the
1110         future. 
1112         Change package name to eglib
1114         * test/slist.c, test/list.c, test/hashtable.c: Update tests to use
1115         FAILURE macro.
1117         * test/string-util.c: fix leak for valgrind tests.
1119         * test/tests.h: New size test, for testing datatypes.
1121         * test/sizes.c: New tests.
1122         
1123 2006-08-19  Aaron Bockover  <abockover@novell.com>
1125         * test/README: Added quick guide on adding new tests/groups to the 
1126         driver and some examples on how to perform various tests with the driver
1128 2006-08-18  Aaron Bockover  <abockover@novell.com>
1130         * test/driver.c: Added getopt support and code timing, among other 
1131         nice features to make testing/profiling easier
1133         * test/test.c: Add support for suppressing output (quiet) and
1134         define RESULT, FAILED, and OK
1136         * src/glib.h:
1137         * src/glist.c: Added g_list_nth_data implementation
1139         * test/slist.c:
1140         * test/string-util.c:
1141         * test/ptrarray.c:
1142         * test/string.c:
1143         * test/hashtable.c:
1144         * test/list.c: Use RESULT, FAILURE, and OK for tests
1146 2006-08-18  Miguel de Icaza  <miguel@novell.com>
1148         * src/gstring.c (g_string_truncate): Implement truncate. 
1149         (g_string_prepend): implement. 
1151         Fix various bugs uncovered by new tests. 
1153         * src/glib.h: introduce gssize type, the signed one.  Important. 
1155         * src/eglib-config.h (G_OS_): Add the G_OS_UNIX and G_OS_WIN32
1156         defines that we can use to check on the host OS.
1158 2006-08-18  Aaron Bockover  <abockover@novell.com>
1160         * test/test.[ch]:
1161         * test/driver.c: Support pass/fail logging on tests to show group report
1163 2006-08-18  Aaron Bockover  <abockover@novell.com>
1165         * test/test.c: 
1166         * test/test.h: Added result() to be used in place of g_strdup_printf(),
1167         it's shorter to write and allows the duped string to be freed safely;
1168         added license header to file
1170         * test/driver.c: Added license header to file
1172         * test/string-util.c:
1173         * test/ptrarray.c:
1174         * test/string.c:
1175         * test/list.c: Use result() in place of g_strdup_printf(), it's nicer
1177 2006-08-18  Aaron Bockover  <abockover@novell.com>
1179         * src/gptrarray.c: Implemented g_ptr_array_sort
1181         * test/ptrarray.c: Added sort test
1182         
1183         * test/driver.c: Added --help; support running N iterations and allow
1184         selecting which test groups to run; uses the test group table in tests.h
1185         
1186         * test/tests.h: Added group table
1187         
1188         * test/test.h:
1189         * test/test.c: Using a Group structure and table, removed run_groups
1190         as we only need run_group now
1192         * test/slist.h: Removed, not needed, tests/groups defined in tests.h
1194 2006-08-18  Miguel de Icaza  <miguel@novell.com>
1196         * src/unicode.c: New file, to host unicode code, it will throw as
1197         this code is no longer used in the Mono runtime anyways.
1198         
1199         * src/glib.h: Use stdint.h types, a lot of the good stuff is
1200         replicated by glib.
1202 2006-08-18  Duncan Mak  <duncan@a-chinaman.com>
1204         * src/glist.c (g_list_remove, g_list_remove_link): Implemented. 
1206         * src/gslist.c (g_slist_remove): Remember to set the next pointer
1207         to NULL when the item to remove is the first item in the list.
1208         
1209 2006-08-18  Duncan Mak  <duncan@a-chinaman.com>
1211         * src/glist.c: Implemented. Missing remove,
1212         remove_link and insert_before.
1214         * test/list.c: Tests for GList.
1216 2006-08-17  Aaron Bockover  <abockover@novell.com>
1218         * src/gptrarray.c: Implemented g_ptr_array_remove and 
1219         g_ptr_array_remove_index
1221         * test/other: Removed, rewritten in Makefile.am
1223         * test/Makefile.am: Build test-eglib against local eglib and 
1224         test-glib against GLib 2.0 (replaces 'other')
1226         * test/ptrarray.c: Added tests for g_ptr_array_remove and
1227         g_ptr_array_remove_index
1229 2006-08-17  Duncan Mak  <duncan@a-chinaman.com>
1231         * src/gslist.c: Added MIT license.
1232         (g_slist_insert_sorted): Forgot the case where the data is
1233         appended to the end of the list.
1235         * test/slist.c (test_slist_insert_sorted): Fix the test.        
1237 2006-08-17  Aaron Bockover  <abockover@novell.com>
1239         * src/gptrarray.c: Added g_ptr_array_set_size implementation
1241         * test/ptrarray.c: Added test for g_ptr_array_set_size
1243 2006-08-17  Miguel de Icaza  <miguel@novell.com>
1245         * src/glib.h: A handful of extra macros
1247         * configure.in, src/eglib-config.h.in: Set some system-specific
1248         settings that are probed at configure time.
1250 2006-08-17  Aaron Bockover  <abockover@novell.com>
1252         * src/gptrarray.c: Added beginnings of GPtrArray (alloc, free, add, iterate)
1254         * src/glib.h: Added GPtrArray signatures
1256         * src/Makefile.am: Added gptrarray.c to build
1258         * test/ptrarray.c:
1259         * test/tests.h:
1260         * test/driver.c:
1261         * test/Makefile.am: Add ptrarray tests for available functionality
1263 2006-08-17  Aaron Bockover  <abockover@novell.com>
1264         
1265         * test/test.h: 
1266         * test/test.c: Added group iterator/test driver functionality
1267         
1268         * test/driver.c: Added groups to run using new test functionality
1269         
1270         * test/slist.h:
1271         * test/hashtable.h:
1272         * test/string-util.h: Test group definitions for string util/hashtable
1274         * test/slist.c:
1275         * test/str.c: 
1276         * test/hash.c: Added test definition table 
1278         * test/Makefile.am: Added -Wall -Werror -D_FORTIFY_SOURCE=2
1280         * src/gstr.c: Added implementation for g_str_has_prefix, g_str_has_suffix
1282         * src/glib.h: Added missing function signatures
1284         * src/Makefile.am: added -D_FORTIFY_SOURCE=2 
1286 2006-08-17  Duncan Mak  <duncan@a-chinaman.com>
1288         * src/gslist.c (g_slist_remove_link): I misread the function
1289         signature. Re-implemented.
1290         (g_slist_delete_link): Implemented.
1291         (g_slist_reverse): Implemented.
1292         (g_slist_insert_sorted): Implemented.
1294 2006-08-17  Duncan Mak  <duncan@a-chinaman.com>
1296         * src/gslist.c (g_slist_find): 
1297         (g_slist_length):
1298         (g_slist_remove):
1299         (g_slist_remove_link): Implemented.
1301         * test/slist.c: Tests for GSList.
1303 2006-08-17  Raja R Harinath  <harinath@gmail.com>
1305         * src/gslist.c (g_slist_free_1): New.  Free a single list node.
1306         (g_slist_free): Use it to free the list nodes.  Don't free the
1307         data, since the list doesn't own it.
1308         (g_slist_append): Convert into a one-liner.
1309         (g_slist_foreach): Remove redundant null check.
1310         (g_slist_last): Actually return the last node.
1311         (g_slist_copy): Simplify.
1312         * src/gslist.h (g_slist_free_1): Add.
1314 2006-08-16  Duncan Mak  <duncan@a-chinaman.com>
1316         * src/gslist.c:
1318         * src/gslist.h: First attempt at implementing GSList, incomplete.
1320         * src/Makefile.am (libeglib_la_SOURCES): add gslist.c
1321         * src/glib.h: Add GFunc definition. #include the new gslist.h.
1323 2006-08-16  Miguel de Icaza  <miguel@novell.com>
1325         * src/Makefile.am: Added -Wall,-Werror, corrected lots of
1326         mistakes.
1328         * src/gstring.c: Gstring implementation.
1330         * test/str.c (test_gstring): string tests.
1332 2006-08-16  Aaron Bockover  <abockover@novell.com>
1334         * src/gstr.c: Added g_strsplit implementation
1336         * test/driver.c: Run the split test
1338         * test/str.c: Added a test for g_strsplit
1340         * Makefile.am:
1341         * src/Makefile.am:
1342         * test/Makefile.am: Added MAINTAINERCLEANFILES
1344 2006-08-16  Miguel de Icaza  <miguel@novell.com>
1346         * src/gouput.c: Implement some output routines, update missing
1347         progress. 
1349         * test: Add test driver, and initial tests. 
1351 2006-08-15  Miguel de Icaza  <miguel@novell.com>
1353         * src/ghashtable.c: Implement most of this, it is completely
1354         untested at this point.