Files
wget2/libwget/test_linking_robots.c
Tim Rühsen acf1ec76bc Rename wget_robots_t -> wget_robots
* include/wget/wget.h: Rename wget_robots_t -> wget_robots
* fuzz/libwget_robots_parse_fuzzer.c: Likewise
* libwget/robots.c: Likewise
* libwget/test_linking_robots.c: Likewise
* src/wget_host.h: Likewise
* unit-tests/test.c: Likewise
2019-07-19 17:05:47 +02:00

15 lines
301 B
C

// Just a test for static linking.
// We call one function from each object file in libwget_thread
// Unresolved references should come up on linking.
#include <config.h>
#include <wget.h>
int main(void)
{
wget_robots *robots;
wget_robots_parse(&robots, "/", NULL);
wget_robots_free(&robots);
}