strchr.c 258 B

12345678910
  1. #include <string.h>
  2. #include <stdio.h>
  3. #include "test_helpers.h"
  4. int main(void) {
  5. printf("%s\n", strchr("hello", 'e')); // should be ello
  6. printf("%s\n", strchr("world", 'l')); // should be ld
  7. printf("%i\n", strchr("world", 0) == NULL); // should be 1
  8. }