#include char * str·efindc(char *s, char *e, int c) { if(s > e) return nil; while(*s && s != e){ if(*s == c) return s; s++; } return nil; }