#include <string.h>
char * strchr2(char *s,int n)
{
  return strchr(s,n);
}

