lots of changes, created Disassembler class, removed a few globals etc.
This commit is contained in:
13
tests/initial_base/STRLEN.C
Normal file
13
tests/initial_base/STRLEN.C
Normal file
@@ -0,0 +1,13 @@
|
||||
main()
|
||||
{ char *s = "test";
|
||||
|
||||
strlen(s);
|
||||
}
|
||||
|
||||
strlen(char *s)
|
||||
{ int n = 0;
|
||||
|
||||
while (*s++)
|
||||
n++;
|
||||
return (n);
|
||||
}
|
||||
Reference in New Issue
Block a user