]> granicus.if.org Git - curl/commitdiff
Added comment about strtoimax()
authorDaniel Stenberg <daniel@haxx.se>
Thu, 11 Aug 2005 20:42:02 +0000 (20:42 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 11 Aug 2005 20:42:02 +0000 (20:42 +0000)
lib/strtoofft.c

index 391f80d2441f964a70d50a38d804468f7b5187c6..a0aab903769d2ae0b3f9adf47e2a6b1d841bb08f 100644 (file)
 #include "setup.h"
 #include "strtoofft.h"
 
+/*
+ * NOTE:
+ *
+ * In the ISO C standard (IEEE Std 1003.1), there is a strtoimax() function we
+ * could use in case strtoll() doesn't exist...  See
+ * http://www.opengroup.org/onlinepubs/009695399/functions/strtoimax.html
+ */
+
 #ifdef NEED_CURL_STRTOLL
 #include <stdlib.h>
 #include <ctype.h>