diff options
author | Tim Janik <timj@src.gnome.org> | 1997-12-23 02:09:34 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1997-12-23 02:09:34 +0000 |
commit | e3956c289a602ddfed751ab781f436229462dd94 (patch) | |
tree | c849136dbdbc5e20bb30f329c92b486abe02cda4 /glib/Makefile.am | |
parent | b44565f3e4730ada4d9d238707fc0d882d197092 (diff) | |
download | gtk+-e3956c289a602ddfed751ab781f436229462dd94.tar.gz |
new file for GScanner: Flexible lexical scanner for general purpose. added
* gscanner.c: new file for GScanner: Flexible lexical scanner for
general purpose.
* glib_pre2.h: added GScanner includes. added g_strconcat and g_strtod.
gutils.c (g_strconcat): new function for string concatenation of NULL
terminated parameter list.
(g_strtod): new function to perform best string to double conversion
with or without consideration of the current locale.
-timj
Diffstat (limited to 'glib/Makefile.am')
-rw-r--r-- | glib/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/glib/Makefile.am b/glib/Makefile.am index 3eff7db871..1179498663 100644 --- a/glib/Makefile.am +++ b/glib/Makefile.am @@ -13,8 +13,9 @@ libglib_la_SOURCES = \ gslist.c \ gtimer.c \ gtree.c \ - gutils.c \ - gstring.c + gstring.c \ + gscanner.c \ + gutils.c include_HEADERS = \ glib.h |