mirror of
https://gitlab.com/gnuwget/wget2.git
synced 2026-02-01 14:41:08 +00:00
Renamed libwget/compat.c -> libwget/strlcpy.c
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
lib_LTLIBRARIES = libwget.la
|
||||
libwget_la_SOURCES = \
|
||||
atom_url.c bar.c buffer.c buffer_printf.c base64.c compat.c cookie.c\
|
||||
atom_url.c bar.c buffer.c buffer_printf.c base64.c cookie.c\
|
||||
css.c css_tokenizer.c css_tokenizer.h css_tokenizer.lex css_url.c\
|
||||
decompressor.c encoding.c hashfile.c hashmap.c io.c hsts.c html_url.c http.c init.c iri.c\
|
||||
list.c log.c logger.c md5.c mem.c metalink.c net.c net.h netrc.c ocsp.c pipe.c printf.c random.c \
|
||||
robots.c rss_url.c sitemap_url.c ssl_gnutls.c stringmap.c thread.c utils.c vector.c xalloc.c\
|
||||
robots.c rss_url.c sitemap_url.c ssl_gnutls.c stringmap.c strlcpy.c thread.c utils.c vector.c xalloc.c\
|
||||
xml.c private.h http_highlevel.c
|
||||
libwget_la_CPPFLAGS =\
|
||||
-fPIC -I$(top_srcdir)/include -I$(srcdir) -I$(top_builddir)/lib -I$(top_srcdir)/lib $(CFLAG_VISIBILITY) -DBUILDING_LIBWGET
|
||||
|
||||
@ -16,7 +16,7 @@ int main(void)
|
||||
wget_info_printf("%d\n", wget_base64_is_string("")); // base64.c
|
||||
wget_buffer_alloc(0); // buffer.c
|
||||
wget_buffer_printf((wget_buffer_t *)1, "%s", ""); // buffer_printf.c
|
||||
strlcpy((char *)"", "", 0); // compat.c
|
||||
strlcpy((char *)"", "", 0); // strlcpy.c
|
||||
wget_css_parse_buffer((const char *)1, NULL, NULL, NULL); // css.c
|
||||
wget_decompress_close(NULL); // decompressor.c
|
||||
wget_hashmap_create(0, 0, NULL, NULL); // hashmap.c
|
||||
|
||||
Reference in New Issue
Block a user