From 10d3b29d0f12c7bf9e2d6c5e2b5e9404adb684da Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 26 May 2026 19:02:27 +0200 Subject: [PATCH] or higher -> or greater 12 examples --- docs/examples/imap-append.c | 2 +- docs/examples/imap-authzid.c | 2 +- docs/examples/imap-copy.c | 2 +- docs/examples/imap-create.c | 2 +- docs/examples/imap-delete.c | 2 +- docs/examples/imap-examine.c | 2 +- docs/examples/imap-fetch.c | 2 +- docs/examples/imap-list.c | 2 +- docs/examples/imap-lsub.c | 2 +- docs/examples/imap-noop.c | 2 +- docs/examples/imap-search.c | 2 +- docs/examples/imap-ssl.c | 2 +- docs/examples/imap-store.c | 2 +- docs/examples/imap-tls.c | 2 +- docs/examples/parseurl.c | 2 +- docs/examples/pop3-authzid.c | 2 +- docs/examples/pop3-dele.c | 2 +- docs/examples/pop3-list.c | 2 +- docs/examples/pop3-noop.c | 2 +- docs/examples/pop3-retr.c | 2 +- docs/examples/pop3-ssl.c | 2 +- docs/examples/pop3-stat.c | 2 +- docs/examples/pop3-tls.c | 2 +- docs/examples/pop3-top.c | 2 +- docs/examples/pop3-uidl.c | 2 +- docs/examples/smtp-authzid.c | 2 +- docs/examples/smtp-expn.c | 2 +- docs/examples/smtp-mime.c | 2 +- docs/examples/smtp-ssl.c | 2 +- docs/examples/smtp-tls.c | 2 +- docs/examples/smtp-vrfy.c | 2 +- docs/examples/sslbackend.c | 2 +- docs/examples/urlapi.c | 2 +- 33 files changed, 33 insertions(+), 33 deletions(-) diff --git a/docs/examples/imap-append.c b/docs/examples/imap-append.c index 3fc2aa0f36..69988ac89b 100644 --- a/docs/examples/imap-append.c +++ b/docs/examples/imap-append.c @@ -33,7 +33,7 @@ /* This is a simple example showing how to send mail using libcurl's IMAP * capabilities. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ #define FROM "" diff --git a/docs/examples/imap-authzid.c b/docs/examples/imap-authzid.c index 26ae0fad07..b0d656c3b2 100644 --- a/docs/examples/imap-authzid.c +++ b/docs/examples/imap-authzid.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to fetch mail using libcurl's IMAP * capabilities. * - * Note that this example requires libcurl 7.66.0 or higher. + * Note that this example requires libcurl 7.66.0 or greater. */ int main(void) diff --git a/docs/examples/imap-copy.c b/docs/examples/imap-copy.c index 5a5cff9252..4a59751772 100644 --- a/docs/examples/imap-copy.c +++ b/docs/examples/imap-copy.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to copy a mail from one mailbox folder * to another using libcurl's IMAP capabilities. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ int main(void) diff --git a/docs/examples/imap-create.c b/docs/examples/imap-create.c index c53be18879..c01d2806d6 100644 --- a/docs/examples/imap-create.c +++ b/docs/examples/imap-create.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to create a new mailbox folder using * libcurl's IMAP capabilities. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ int main(void) diff --git a/docs/examples/imap-delete.c b/docs/examples/imap-delete.c index d9035deda0..815f8267df 100644 --- a/docs/examples/imap-delete.c +++ b/docs/examples/imap-delete.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to delete an existing mailbox folder * using libcurl's IMAP capabilities. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ int main(void) diff --git a/docs/examples/imap-examine.c b/docs/examples/imap-examine.c index d09cab9815..32d0534274 100644 --- a/docs/examples/imap-examine.c +++ b/docs/examples/imap-examine.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to obtain information about a mailbox * folder using libcurl's IMAP capabilities via the EXAMINE command. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ int main(void) diff --git a/docs/examples/imap-fetch.c b/docs/examples/imap-fetch.c index 8d94600a6e..be27d37322 100644 --- a/docs/examples/imap-fetch.c +++ b/docs/examples/imap-fetch.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to fetch mail using libcurl's IMAP * capabilities. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ int main(void) diff --git a/docs/examples/imap-list.c b/docs/examples/imap-list.c index 4eebf63ec9..f3c7758aab 100644 --- a/docs/examples/imap-list.c +++ b/docs/examples/imap-list.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to list the folders within an IMAP * mailbox. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ int main(void) diff --git a/docs/examples/imap-lsub.c b/docs/examples/imap-lsub.c index 3ddc9dbb00..4acbcd10b1 100644 --- a/docs/examples/imap-lsub.c +++ b/docs/examples/imap-lsub.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to list the subscribed folders within * an IMAP mailbox. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ int main(void) diff --git a/docs/examples/imap-noop.c b/docs/examples/imap-noop.c index 14396bdb1a..e66b953520 100644 --- a/docs/examples/imap-noop.c +++ b/docs/examples/imap-noop.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to perform a noop using libcurl's IMAP * capabilities. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ int main(void) diff --git a/docs/examples/imap-search.c b/docs/examples/imap-search.c index 60ec12d115..6087feb013 100644 --- a/docs/examples/imap-search.c +++ b/docs/examples/imap-search.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to search for new messages using * libcurl's IMAP capabilities. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ int main(void) diff --git a/docs/examples/imap-ssl.c b/docs/examples/imap-ssl.c index 6cb18aae41..ce7e0dc0e5 100644 --- a/docs/examples/imap-ssl.c +++ b/docs/examples/imap-ssl.c @@ -33,7 +33,7 @@ * capabilities. It builds on the imap-fetch.c example adding transport * security to protect the authentication details from being snooped. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ int main(void) diff --git a/docs/examples/imap-store.c b/docs/examples/imap-store.c index db1c722d15..8e684eb945 100644 --- a/docs/examples/imap-store.c +++ b/docs/examples/imap-store.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to modify an existing mail using * libcurl's IMAP capabilities with the STORE command. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ int main(void) diff --git a/docs/examples/imap-tls.c b/docs/examples/imap-tls.c index 22c66ffd9c..f09f7712b7 100644 --- a/docs/examples/imap-tls.c +++ b/docs/examples/imap-tls.c @@ -33,7 +33,7 @@ * capabilities. It builds on the imap-fetch.c example adding transport * security to protect the authentication details from being snooped. * - * Note that this example requires libcurl 7.30.0 or higher. + * Note that this example requires libcurl 7.30.0 or greater. */ int main(void) diff --git a/docs/examples/parseurl.c b/docs/examples/parseurl.c index 2501cfbd6f..7991990af5 100644 --- a/docs/examples/parseurl.c +++ b/docs/examples/parseurl.c @@ -30,7 +30,7 @@ #include #if !CURL_AT_LEAST_VERSION(7, 62, 0) -#error "this example requires curl 7.62.0 or higher" +#error "this example requires curl 7.62.0 or greater" #endif int main(void) diff --git a/docs/examples/pop3-authzid.c b/docs/examples/pop3-authzid.c index 0e4393746b..c47ab5a3d6 100644 --- a/docs/examples/pop3-authzid.c +++ b/docs/examples/pop3-authzid.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to retrieve mail using libcurl's POP3 * capabilities. * - * Note that this example requires libcurl 7.66.0 or higher. + * Note that this example requires libcurl 7.66.0 or greater. */ int main(void) diff --git a/docs/examples/pop3-dele.c b/docs/examples/pop3-dele.c index 5cc06ca5ad..c44b562bc0 100644 --- a/docs/examples/pop3-dele.c +++ b/docs/examples/pop3-dele.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to delete an existing mail using * libcurl's POP3 capabilities. * - * Note that this example requires libcurl 7.26.0 or higher. + * Note that this example requires libcurl 7.26.0 or greater. */ int main(void) diff --git a/docs/examples/pop3-list.c b/docs/examples/pop3-list.c index 0501617fc7..885d410d71 100644 --- a/docs/examples/pop3-list.c +++ b/docs/examples/pop3-list.c @@ -32,7 +32,7 @@ /* This is a simple example using libcurl's POP3 capabilities to list the * contents of a mailbox. * - * Note that this example requires libcurl 7.20.0 or higher. + * Note that this example requires libcurl 7.20.0 or greater. */ int main(void) diff --git a/docs/examples/pop3-noop.c b/docs/examples/pop3-noop.c index 0d3a0e679b..78d9015881 100644 --- a/docs/examples/pop3-noop.c +++ b/docs/examples/pop3-noop.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to perform a noop using libcurl's POP3 * capabilities. * - * Note that this example requires libcurl 7.26.0 or higher. + * Note that this example requires libcurl 7.26.0 or greater. */ int main(void) diff --git a/docs/examples/pop3-retr.c b/docs/examples/pop3-retr.c index 20a02377d5..4c345b6c65 100644 --- a/docs/examples/pop3-retr.c +++ b/docs/examples/pop3-retr.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to retrieve mail using libcurl's POP3 * capabilities. * - * Note that this example requires libcurl 7.20.0 or higher. + * Note that this example requires libcurl 7.20.0 or greater. */ int main(void) diff --git a/docs/examples/pop3-ssl.c b/docs/examples/pop3-ssl.c index 0bc62c51d9..99f623ea55 100644 --- a/docs/examples/pop3-ssl.c +++ b/docs/examples/pop3-ssl.c @@ -33,7 +33,7 @@ * capabilities. It builds on the pop3-retr.c example adding transport * security to protect the authentication details from being snooped. * - * Note that this example requires libcurl 7.20.0 or higher. + * Note that this example requires libcurl 7.20.0 or greater. */ int main(void) diff --git a/docs/examples/pop3-stat.c b/docs/examples/pop3-stat.c index 0556a8f57c..7c564edd68 100644 --- a/docs/examples/pop3-stat.c +++ b/docs/examples/pop3-stat.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to obtain message statistics using * libcurl's POP3 capabilities. * - * Note that this example requires libcurl 7.26.0 or higher. + * Note that this example requires libcurl 7.26.0 or greater. */ int main(void) diff --git a/docs/examples/pop3-tls.c b/docs/examples/pop3-tls.c index b455b3c5d2..e9edfc12e2 100644 --- a/docs/examples/pop3-tls.c +++ b/docs/examples/pop3-tls.c @@ -33,7 +33,7 @@ * capabilities. It builds on the pop3-retr.c example adding transport * security to protect the authentication details from being snooped. * - * Note that this example requires libcurl 7.20.0 or higher. + * Note that this example requires libcurl 7.20.0 or greater. */ int main(void) diff --git a/docs/examples/pop3-top.c b/docs/examples/pop3-top.c index f490996032..08b9191a79 100644 --- a/docs/examples/pop3-top.c +++ b/docs/examples/pop3-top.c @@ -32,7 +32,7 @@ /* This is a simple example showing how to retrieve only the headers of a mail * using libcurl's POP3 capabilities. * - * Note that this example requires libcurl 7.26.0 or higher. + * Note that this example requires libcurl 7.26.0 or greater. */ int main(void) diff --git a/docs/examples/pop3-uidl.c b/docs/examples/pop3-uidl.c index 1973788cc1..20885e5b72 100644 --- a/docs/examples/pop3-uidl.c +++ b/docs/examples/pop3-uidl.c @@ -32,7 +32,7 @@ /* This is a simple example using libcurl's POP3 capabilities to list the * contents of a mailbox by unique ID. * - * Note that this example requires libcurl 7.26.0 or higher. + * Note that this example requires libcurl 7.26.0 or greater. */ int main(void) diff --git a/docs/examples/smtp-authzid.c b/docs/examples/smtp-authzid.c index d30b087f24..1a66c678a3 100644 --- a/docs/examples/smtp-authzid.c +++ b/docs/examples/smtp-authzid.c @@ -34,7 +34,7 @@ * This is a simple example show how to send an email using libcurl's SMTP * capabilities. * - * Note that this example requires libcurl 7.66.0 or higher. + * Note that this example requires libcurl 7.66.0 or greater. */ /* The libcurl options want plain addresses, the viewable headers in the mail diff --git a/docs/examples/smtp-expn.c b/docs/examples/smtp-expn.c index 8db15826f6..020032a6e2 100644 --- a/docs/examples/smtp-expn.c +++ b/docs/examples/smtp-expn.c @@ -34,7 +34,7 @@ * * Notes: * - * 1) This example requires libcurl 7.34.0 or higher. + * 1) This example requires libcurl 7.34.0 or greater. * 2) Not all email servers support this command. */ diff --git a/docs/examples/smtp-mime.c b/docs/examples/smtp-mime.c index 91920da852..89663265a0 100644 --- a/docs/examples/smtp-mime.c +++ b/docs/examples/smtp-mime.c @@ -34,7 +34,7 @@ * capabilities. For an example of using the multi interface please see * smtp-multi.c. * - * Note that this example requires libcurl 7.56.0 or higher. + * Note that this example requires libcurl 7.56.0 or greater. */ #define FROM "" diff --git a/docs/examples/smtp-ssl.c b/docs/examples/smtp-ssl.c index 09bd872b51..eeef4cdefd 100644 --- a/docs/examples/smtp-ssl.c +++ b/docs/examples/smtp-ssl.c @@ -35,7 +35,7 @@ * and, more importantly, transport security to protect the authentication * details from being snooped. * - * Note that this example requires libcurl 7.20.0 or higher. + * Note that this example requires libcurl 7.20.0 or greater. */ #define FROM_MAIL "" diff --git a/docs/examples/smtp-tls.c b/docs/examples/smtp-tls.c index ce6ef61170..69c8ff86af 100644 --- a/docs/examples/smtp-tls.c +++ b/docs/examples/smtp-tls.c @@ -35,7 +35,7 @@ * and, more importantly, transport security to protect the authentication * details from being snooped. * - * Note that this example requires libcurl 7.20.0 or higher. + * Note that this example requires libcurl 7.20.0 or greater. */ #define FROM_MAIL "" diff --git a/docs/examples/smtp-vrfy.c b/docs/examples/smtp-vrfy.c index a1d59a6e13..aad02871f8 100644 --- a/docs/examples/smtp-vrfy.c +++ b/docs/examples/smtp-vrfy.c @@ -35,7 +35,7 @@ * * Notes: * - * 1) This example requires libcurl 7.34.0 or higher. + * 1) This example requires libcurl 7.34.0 or greater. * 2) Not all email servers support this command and even if your email server * does support it, it may respond with a 252 response code even though the * address does not exist. diff --git a/docs/examples/sslbackend.c b/docs/examples/sslbackend.c index c23e3e7e92..2f3b496203 100644 --- a/docs/examples/sslbackend.c +++ b/docs/examples/sslbackend.c @@ -37,7 +37,7 @@ * An SSL-enabled libcurl is required for this sample to work (at least one * SSL backend has to be configured). * - * **** This example only works with libcurl 7.56.0 or higher! **** + * **** This example only works with libcurl 7.56.0 or greater! **** */ int main(int argc, const char **argv) diff --git a/docs/examples/urlapi.c b/docs/examples/urlapi.c index fd5c0a98ae..82f7d780fa 100644 --- a/docs/examples/urlapi.c +++ b/docs/examples/urlapi.c @@ -29,7 +29,7 @@ #include #if !CURL_AT_LEAST_VERSION(7, 80, 0) -#error "this example requires curl 7.80.0 or higher" +#error "this example requires curl 7.80.0 or greater" #endif int main(void)