Jabber WindowGram Client (JWGC)

Introduction Screenshots Installation Downloads
Documentation Browse Source Resources Project Site

Stable Version
-none-

Latest Version
beta5



Main Page | Alphabetical List | Data Structures | Directories | File List | Data Fields | Globals

char_stack.h File Reference

#include "mit-copyright.h"

Go to the source code of this file.

Data Structures

struct  _char_stack

Defines

#define NULL   0
#define char_stack_create()   ((struct _char_stack *) NULL)
#define char_stack_empty(stack)   (!(stack))
#define char_stack_top(stack)   ((stack)->data)
#define char_stack_pop(stack)
#define char_stack_push(stack, object)

Typedefs

typedef _char_stackchar_stack


Define Documentation

 
#define char_stack_create  )     ((struct _char_stack *) NULL)
 

Definition at line 29 of file char_stack.h.

Referenced by disp_get_cmds(), and protect().

#define char_stack_empty stack   )     (!(stack))
 

Definition at line 31 of file char_stack.h.

Referenced by disp_get_cmds(), and protect().

#define char_stack_pop stack   ) 
 

Value:

{ char_stack old = (stack);\
                                    (stack) = old->next;\
                                    free(old); }

Definition at line 35 of file char_stack.h.

Referenced by disp_get_cmds(), and protect().

#define char_stack_push stack,
object   ) 
 

Value:

{ char_stack new = (struct _char_stack *)\
               malloc(sizeof (struct _char_stack));\
             new->next = (stack);\
             new->data = object;\
             (stack) = new; }

Definition at line 39 of file char_stack.h.

Referenced by disp_get_cmds(), and protect().

#define char_stack_top stack   )     ((stack)->data)
 

Definition at line 33 of file char_stack.h.

Referenced by disp_get_cmds(), and protect().

#define NULL   0
 

Definition at line 21 of file char_stack.h.

Referenced by _jid_nullstrcasecmp(), _jid_nullstrcmp(), decode_notice(), dparseflags(), edit_field_boolean(), edit_field_list_single(), edit_field_text_single(), edit_nonform_entry(), end_xerror_trap(), fake_startup_packet(), getLastEvent(), j_strcasecmp(), j_strcmp(), j_strncasecmp(), j_strncmp(), jab_on_packet_handler(), jab_on_state_handler(), jab_poll(), jab_start(), jabutil_regkey(), jabutil_timestamp(), jid_cmp(), jid_cmpx(), jid_new(), jid_nodescan(), jid_safe(), jid_set(), jid_user(), jid_xres(), jwg_on_event_handler(), jwg_poll(), jwg_recv(), jwg_reset(), jwg_send(), jwg_servpoll(), jwg_servrecv(), jwg_servsend(), jwg_servstart(), jwg_sockselect(), jwg_start(), jwgc_change_presence_event_handler(), make_addr(), make_netsocket(), mux_loop(), process_iq_result(), process_presence(), show_status(), spool_print(), test_match(), tty_filter_init(), xcut(), xdestroygram(), XML_ExternalEntityParserCreate(), XML_ParserCreate(), XML_ParserCreateNS(), xode2file(), xode_cmp(), xode_file(), xode_file_borked(), xode_from_file(), xode_from_str(), xode_get_attrib(), xode_get_tag(), xode_get_vattrib(), xode_hide(), xode_hide_attrib(), xode_insert_cdata(), xode_insert_node(), xode_new(), xode_pool_malloc(), xode_put_attrib(), xode_spool_tostr(), xode_str(), xode_stream_new(), xode_strescape(), xode_strunescape(), xode_to_file(), and xode_wrap().


Typedef Documentation

typedef struct _char_stack * char_stack
 

Referenced by disp_get_cmds(), and protect().



Last updated at Tue Dec 18 21:07:42 PST 2007. This site and project hosted by...SourceForge.net Logo

Source Perspective by Fisheye