]> andersk Git - splint.git/blame - src/Headers/nameNode.h
Making fixes for Microsoft Visual C++ compiler.
[splint.git] / src / Headers / nameNode.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*/
6
28bf4b0b 7typedef struct {
885824d3 8 bool isOpId; /* TRUE means is opId */
9 union {
10 ltoken opid;
11 /*@null@*/ opFormNode opform;
12 } content;
13} *nameNode;
14
15extern void nameNode_free (/*@null@*/ /*@only@*/ nameNode p_n);
16extern /*@only@*/ /*@null@*/ nameNode nameNode_copy (/*@null@*/ nameNode p_n) /*@*/ ;
17extern /*@only@*/ cstring nameNode_unparse (/*@null@*/ nameNode p_n) /*@*/ ;
18extern /*@only@*/ nameNode nameNode_copySafe (nameNode p_n) /*@*/ ;
This page took 0.063473 seconds and 5 git commands to generate.