rvddt/examples/freestanding/stand10/myfunc.c

14 lines
221 B
C
Raw Normal View History

2025-02-13 11:12:23 +00:00
#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;
}