]> andersk Git - splint.git/blame - src/Headers/replaceNode.h
Fixed some splintme errors from the previous code change.
[splint.git] / src / Headers / replaceNode.h
CommitLineData
885824d3 1/*
c0de361f 2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2003.
885824d3 3** See ../LICENSE for license information.
4**
5*/
28bf4b0b 6
7typedef struct {
885824d3 8 ltoken tok;
9 typeNameNode typename;
10 bool isCType; /* TRUE means it is a CType */
11 union {
12 struct {
28bf4b0b 13 /*@only@*/ /*@null@*/ nameNode name;
14 /*@only@*/ /*@null@*/ sigNode signature;
885824d3 15 } renamesortname;
16 ltoken ctype;
17 } content;
18} *replaceNode;
19
20extern void replaceNode_free (/*@only@*/ /*@null@*/ replaceNode p_x);
21extern /*@only@*/ cstring replaceNode_unparse (/*@null@*/ replaceNode p_x);
22
This page took 0.203561 seconds and 5 git commands to generate.