]> andersk Git - splint.git/blame - test/manual/rstring.c
noexpand always false.
[splint.git] / test / manual / rstring.c
CommitLineData
77970e15 1# include "rstring.h"
2
3static rstring rstring_ref (rstring r)
4{
5 r->refs++;
6 return r;
7}
8
9rstring rstring_first (rstring r1, rstring r2)
10{
11 if (strcmp (r1->contents, r2->contents) < 0)
12 {
13 return r1;
14 }
15 else
16 {
17 return rstring_ref (r2);
18 }
19}
This page took 1.023294 seconds and 5 git commands to generate.