Re: new gstack, gqueue
- From: Tim Janik <timj gtk org>
- To: gtk-devel-list redhat com
- Subject: Re: new gstack, gqueue
- Date: Wed, 17 Mar 1999 02:12:59 +0100 (CET)
On Sun, 7 Mar 1999, Jeff Garzik wrote:
> The following are two new ADTs I would like to add to Glib. Are there
> any comments or suggestions before the initial commit?
>
> Code is in the GLIB_1_3_HACKS branch.
>
> Thanks,
>
> Jeff
jeff the gstack and gqueue stuff is so small (63 and 144 lines each), could
you put that into one file? e.g. glist-aux.c or somesuch (since it's implemented
piggy back on glist.c).
also the code could stand some coding style correction, e.g.
void
g_queue_push_front (GQueue *queue,
gpointer data)
{
if (queue)
{
instead of
void
g_queue_push_front (GQueue *q, gpointer data)
{
if (q) {
and last but not least, we need appropriate copyright notices in the *.c
files.
---
ciaoTJ
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]