Rename ROBOTS to wget_robots_t

* fuzz/libwget_robots_parse_fuzzer.c: Rename ROBOTS to wget_robots_t
* include/wget/wget.h: Likewise
* libwget/robots.c: Likewise
* src/wget_host.h: Likewise
* unit-tests/test.c: Likewise
This commit is contained in:
Tim Rühsen
2017-10-22 20:54:42 +02:00
parent 787c775e00
commit fed4ae32c8
5 changed files with 11 additions and 11 deletions

View File

@ -2232,17 +2232,17 @@ WGETAPI void
* Robots types and routines
*/
typedef struct ROBOTS {
typedef struct {
wget_vector_t
*paths;
wget_vector_t
*sitemaps;
} ROBOTS;
} wget_robots_t;
WGETAPI ROBOTS *
WGETAPI wget_robots_t *
wget_robots_parse(const char *data, const char *client);
WGETAPI void
wget_robots_free(ROBOTS **robots);
wget_robots_free(wget_robots_t **robots);
/*
* Progress bar routines