mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-02-01 14:41:08 +00:00
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:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user