#include char * str·findc(char *s, int c) { while(*s){ if(*s == c) return s; s++; } return nil; }