Code Search for Developers
 
 
  

taint2.c-orig.html from CQual at Krugle


Show taint2.c-orig.html syntax highlighted

<html>
<body bgcolor="white">
<pre>
char *getenv(const char *name);
int printf(char *fmt, ...);

char *f3(char *t) { return t; }
char *f2(char *u) { return f3(u); }
char *f1(char *v) { return f2(v); }

int main(void)
{
  char *s, *unclean;

  unclean = getenv("PATH");

  s = f1(unclean);
  printf(s);
}
</pre>
</body>
</html>




See more files for this project here

CQual

CQual - A tool for adding type qualifiers to C

Project homepage: http://sourceforge.net/projects/cqual
Programming language(s): C,Java,Shell Script
License: other

  cqual.html
  lock.c
  lock.c-annot.html
  lock.c-explain.html
  lock.c-orig.html
  lock.c.html
  taint.c
  taint.c-annot.html
  taint.c-explain.html
  taint.c-orig.html
  taint.c.html
  taint2.c
  taint2.c-annot.html
  taint2.c-explain.html
  taint2.c-orig.html
  taint2.c.html
  tutorial.html