rvddt/examples/freestanding/stand07/myfunc.c
2025-02-13 11:12:23 +00:00

14 lines
221 B
C

#include "myfunc.h" // always include my own decls so compiler will tell me if I mess up!
int myfunc(const char *s)
{
int i = 0;
// sum up all the character codes in the string
while (*s)
i += *s++;
return i;
}