source:
src/Clight/test/string.c
@
1545
Last change on this file since 1545 was 485, checked in by , 10 years ago | |
---|---|
File size: 130 bytes |
Line | |
---|---|
1 | char *s = "Hello, world!"; |
2 | |
3 | int main(void) { |
4 | char *t; |
5 | int i = 0; |
6 | for (t = s; *t; t++) |
7 | i = (i + *t) % 128; |
8 | return i; |
9 | } |
Note: See TracBrowser
for help on using the repository browser.