1
0
mirror of https://github.com/cc65/cc65.git synced 2025-04-09 10:39:40 +00:00

Merge pull request #2463 from SvenMichaelKlose/test_strtok

Test strtok().
This commit is contained in:
Bob Andrews 2024-07-15 22:56:10 +02:00 committed by GitHub
commit 6551d455b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

41
test/val/strtok.c Normal file
View File

@ -0,0 +1,41 @@
#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;
}