H:/Class/11756/HLab/sphinxbase-0.4/src/libsphinxbase/util/glist.c File Reference

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "glist.h"
#include "ckd_alloc.h"

Functions

glist_t glist_add_ptr (glist_t g, void *ptr)
glist_t glist_add_int32 (glist_t g, int32 val)
glist_t glist_add_uint32 (glist_t g, uint32 val)
glist_t glist_add_float32 (glist_t g, float32 val)
glist_t glist_add_float64 (glist_t g, float64 val)
void glist_free (glist_t g)
int32 glist_count (glist_t g)
gnode_tglist_tail (glist_t g)
glist_t glist_reverse (glist_t g)
gnode_tglist_insert_ptr (gnode_t *gn, void *ptr)
gnode_tglist_insert_int32 (gnode_t *gn, int32 val)
gnode_tglist_insert_uint32 (gnode_t *gn, uint32 val)
gnode_tglist_insert_float32 (gnode_t *gn, float32 val)
gnode_tglist_insert_float64 (gnode_t *gn, float64 val)
gnode_tgnode_free (gnode_t *gn, gnode_t *pred)

Function Documentation

glist_t glist_add_float32 ( glist_t  g,
float32  val 
)

Create and prepend a new list node containing a single-precision float.

Parameters:
g a link list
val a float32 vlaue
glist_t glist_add_float64 ( glist_t  g,
float64  val 
)

Create and prepend a new list node containing a double-precision float.

Parameters:
g a link list
val a float64 vlaue
glist_t glist_add_int32 ( glist_t  g,
int32  val 
)

Create and prepend a new list node containing an integer.

Parameters:
g a link list
val an integer value
glist_t glist_add_ptr ( glist_t  g,
void *  ptr 
)

Create and prepend a new list node, with the given user-defined data, at the HEAD of the given generic list. Return the new list thus formed. g may be NULL to indicate an initially empty list.

Parameters:
g a link list
ptr a pointer
glist_t glist_add_uint32 ( glist_t  g,
uint32  val 
)

Create and prepend a new list node containing an unsigned integer.

Parameters:
g a link list
val an unsigned integer value
int32 glist_count ( glist_t  g  ) 

Count the number of element in a given link list

Returns:
the number of elements in the given glist_t
Parameters:
g input link list
void glist_free ( glist_t  g  ) 

Free the given generic list; user-defined data contained within is not automatically freed. The caller must have done that already.

gnode_t* glist_insert_float32 ( gnode_t gn,
float32  val 
)

Create and insert a new list node containing a single-precision float.

Parameters:
gn a generic node which a value will be inserted after it
val float32 inserted
gnode_t* glist_insert_float64 ( gnode_t gn,
float64  val 
)

Create and insert a new list node containing a double-precision float.

Parameters:
gn a generic node which a value will be inserted after it
val float64 inserted
gnode_t* glist_insert_int32 ( gnode_t gn,
int32  val 
)

Create and insert a new list node containing an integer.

Parameters:
gn a generic node which a value will be inserted after it
val int32 inserted
gnode_t* glist_insert_ptr ( gnode_t gn,
void *  ptr 
)

Create and insert a new list node, with the given user-defined data, after the given generic node gn. gn cannot be NULL. Return ptr to the newly created gnode_t.

Parameters:
gn a generic node which ptr will be inserted after it
ptr pointer inserted
gnode_t* glist_insert_uint32 ( gnode_t gn,
uint32  val 
)

Create and insert a new list node containing an unsigned integer.

Parameters:
gn a generic node which a value will be inserted after it
val uint32 inserted
glist_t glist_reverse ( glist_t  g  ) 

Reverse the order of the given glist. (glist_add() adds to the head; one might ultimately want the reverse of that.) NOTE: The list is reversed "in place"; i.e., no new memory is allocated.

Returns:
: The head of the new list.
Parameters:
g input link list
gnode_t* glist_tail ( glist_t  g  ) 

Return the last node in the given list.

gnode_t* gnode_free ( gnode_t gn,
gnode_t pred 
)

Free the given node, gn, of a glist, pred being its predecessor in the list. Return ptr to the next node in the list after the freed node.

 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines
Generated on Sat May 8 14:21:42 2010 for HLab by  doxygen 1.6.3