1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00
elinks/src/cookies/cookies-t.c

13 lines
247 B
C

/* Tool for testing the cookies path */
#include <stdio.h>
#include "path.h"
int main(int argc, char **argv)
{
int res = is_path_prefix(argv[1], argv[2]);
printf("is_path_prefix(\"%s\", \"%s\")=%d\n", argv[1], argv[2], res);
return !res;
}