]> andersk Git - splint.git/blame_incremental - src/Headers/importNode.h
*** empty log message ***
[splint.git] / src / Headers / importNode.h
... / ...
CommitLineData
1/*
2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2001.
3** See ../LICENSE for license information.
4**
5*/
6/*
7** importNode.h
8**
9** needs "ltoken_type.h"
10*/
11
12typedef enum { IMPPLAIN, IMPBRACKET, IMPQUOTE } impkind ;
13
14typedef struct {
15 impkind kind;
16 ltoken val;
17} *importNode ;
18
19extern void importNode_free (/*@only@*/ /*@null@*/ importNode p_x);
20
21extern /*@only@*/ importNode importNode_makePlain (/*@only@*/ ltoken p_t);
22extern /*@only@*/ importNode importNode_makeBracketed (/*@only@*/ ltoken p_t);
23extern /*@only@*/ importNode importNode_makeQuoted (/*@only@*/ ltoken p_t);
This page took 0.285968 seconds and 5 git commands to generate.