reformatted comment.
authorGunter Knauf <gk@gknw.de>
Wed, 20 Feb 2008 12:36:35 +0000 (12:36 +0000)
committerGunter Knauf <gk@gknw.de>
Wed, 20 Feb 2008 12:36:35 +0000 (12:36 +0000)
docs/examples/ftpupload.c

index db209a7..8b29a21 100644 (file)
 #define RENAME_FILE_TO  "renamed-and-fine.txt"
 
 /* NOTE: if you want this example to work on Windows with libcurl as a
-   DLL, you MUST also provide a read callback with
-   CURLOPT_READFUNCTION. Failing to do so will give you a crash since a
-   DLL may not use the variable's memory when passed in to it from an app
-   like this. */
+   DLL, you MUST also provide a read callback with CURLOPT_READFUNCTION.
+   Failing to do so will give you a crash since a DLL may not use the
+   variable's memory when passed in to it from an app like this. */
 static size_t read_callback(void *ptr, size_t size, size_t nmemb, void *stream)
 {
   /* in real-world cases, this would probably get this data differently