0025-string.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
0025-string.c (85B)
---
1 int strlen(char *);
2
3 int
4 main()
5 {
6 char *p;
7
8 p = "hello";
9 return strlen(p) - 5;
10 }