aboutsummaryrefslogtreecommitdiff
path: root/lib/strtoofft.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-19 08:12:13 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-19 08:12:13 +0000
commit0bf1bd51c489e8316fe201bcbdaaab38c0d570c2 (patch)
tree77f1e73aa6fc4412f3ae31c018e1d57c0b14276d /lib/strtoofft.c
parent4cf70e3069656a86f9dae59a4aea14802f3bc030 (diff)
Remade to use curlx_-prefix. This means this function can be compiled and
linked separately by the application. This function is not provided by the libcurl API. It can only be accessed by apps if they compile and use this particular source code.
Diffstat (limited to 'lib/strtoofft.c')
-rw-r--r--lib/strtoofft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strtoofft.c b/lib/strtoofft.c
index a6f1f01f3..1bcfb1af4 100644
--- a/lib/strtoofft.c
+++ b/lib/strtoofft.c
@@ -36,7 +36,7 @@ static int get_char(char c, int base);
* value from the given input string and returns it.
*/
curl_off_t
-Curl_strtoll(const char *nptr, char **endptr, int base)
+curlx_strtoll(const char *nptr, char **endptr, int base)
{
char *end;
int is_negative = 0;