~ubuntu-branches/ubuntu/lucid/graphviz/lucid-security

« back to all changes in this revision

Viewing changes to agutil/agutil.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2002-02-05 18:52:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020205185212-8i04c70te00rc40y
Tags: upstream-1.7.16
ImportĀ upstreamĀ versionĀ 1.7.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* attribute handling */
 
2
 
 
3
double  ag_scan_float(void *obj, char *name, double low, double high, double defval);
 
4
int     ag_scan_int(void *obj, char *name, int low, int high, int defval);
 
5
 
 
6
 
 
7
/* a node queue */
 
8
typedef struct Nqueue_s {
 
9
        Agnode_t        **store,**limit,**head,**tail;
 
10
} Nqueue;
 
11
 
 
12
Nqueue          *Nqueue_new(Agraph_t *g);
 
13
void            Nqueue_free(Agraph_t *g, Nqueue *q);
 
14
void            Nqueue_insert(Nqueue *q, Agnode_t *n);
 
15
Agnode_t         *Nqueue_remove(Nqueue *q);