1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-29 03:17:53 -04:00
elinks/src/cookies/cookies-t.c

13 lines
247 B
C
Raw Normal View History

/* 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;
}