tst-strfry.c 160 B

1234567891011121314
  1. #include <stdio.h>
  2. #include <string.h>
  3. int
  4. do_test (void)
  5. {
  6. char str[] = "this is a test";
  7. strfry (str);
  8. return 0;
  9. }
  10. #include <support/test-driver.c>