1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-10 19:29:45 +00:00
cc65/test/val/strtok.c
2024-07-15 17:54:43 +02:00

42 lines
692 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void
error (void)
{
printf ("strtok() test failed!\n");
exit (EXIT_FAILURE);
}
void
test (char * s)
{
if (strcmp ("test", strtok (s, "/")))
error ();
if (strcmp ("foo", strtok (NULL, "/")))
error ();
if (strcmp ("bar", strtok (NULL, "/")))
error ();
if (strtok (NULL, "/"))
error ();
if (strtok (NULL, "/"))
error ();
}
int
main (void)
{
char s1[] = "test/foo/bar";
char s2[] = "/test/foo/bar";
char s3[] = "//test/foo/bar";
char s4[] = "//test/foo/bar//";
test (s1);
test (s2);
test (s3);
test (s4);
return EXIT_SUCCESS;
}