home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
splint3s.zip
/
splint-3.0.1.6
/
test
/
staticarray.c
< prev
next >
Wrap
C/C++ Source or Header
|
2000-06-12
|
324b
|
29 lines
#include <stdio.h>
#include <stdlib.h>
char *foo1(void)
{
static char buf[1000];
strcpy(buf, "hello");
return buf;
}
/*@observer@*/ char *foo2(void)
{
static char buf[1000];
strcpy(buf, "hello");
return buf;
}
char *f (char outstr[])
{
return outstr;
}
char *g (char *outstr)
{
return outstr;
}