home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
splint3s.zip
/
splint-3.0.1.6
/
test
/
strings.c
< prev
next >
Wrap
Text File
|
2000-06-12
|
267b
|
27 lines
/*
** checks read-only strings
*/
char f1 (char *x)
{
return *x;
}
char f2 (char *x) /*@modifies *x;@*/
{
*x = 'a';
return *x;
}
void f3 (/*@only@*/ char *x)
{
free (x);
}
void main (void)
{
(void) f1 ("hullo");
(void) f2 ("hullo");
f3 ("hullo");
}