curl/lib/curlx
Daniel Stenberg f0fc30e904
winbuild: curl_get_line is not used for tool builds
Drop it from the build. Also remove it from the tests/server makefile.

Follow-up to d8618f4d84

Closes #17286
2025-05-08 10:53:57 +02:00
..
base64.c curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00
base64.h curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00
curlx.h winbuild: curl_get_line is not used for tool builds 2025-05-08 10:53:57 +02:00
dynbuf.c curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00
dynbuf.h curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00
multibyte.c lib: move multibyte.[ch] to curlx/ 2025-05-08 10:19:19 +02:00
multibyte.h lib: move multibyte.[ch] to curlx/ 2025-05-08 10:19:19 +02:00
README.md curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00
strparse.c curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00
strparse.h curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00
timediff.c curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00
timediff.h curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00
timeval.c curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00
timeval.h curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00
warnless.c curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00
warnless.h curlx: move into to curlx/ 2025-05-07 11:01:15 +02:00

curlx

Functions that are prefixed with curlx_ are internal global functions that are written in a way to allow them to be "borrowed" and used outside of the library: in the curl tool and in the curl test suite.

The curlx functions are not part of the libcurl API, but are stand-alone functions whose sources can be built and used outside of libcurl. There are not API or ABI guarantees. The functions are not written or meant to be used outside of the curl project.

Only functions actually used by the library are provided here.

Ways to success

  • Do not use struct Curl_easy in these files
  • Do not use the printf defines in these files
  • Make them as stand-alone as possible