689a55597aa8486ca5d82919692138c22a8ee3c0
kent
  Wed Mar 28 11:21:51 2012 -0700
Improving comments.
diff --git src/inc/sqlNum.h src/inc/sqlNum.h
index 2a9cad6..c00efbe 100644
--- src/inc/sqlNum.h
+++ src/inc/sqlNum.h
@@ -1,17 +1,24 @@
 /* sqlNum.h - routines to convert from ascii to
  * unsigned/integer a bit more quickly than atoi. 
+ * Called sqlNum because it was first developed for use with
+ * SQL databases, which tend to require a lot of conversion from
+ * string to binary representation of numbers. In particular the
+ * code generator AutoSQL puts in lots of calls to these routines
+ * into it's parsers.  Other parser in the source tree have come
+ * to use these too though since they are fast and have good error
+ * checking.
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #ifndef SQLNUM_H
 #define SQLNUM_H
 
 /* get off_t */
 #include <sys/types.h>
 
 unsigned sqlUnsigned(char *s);
 /* Convert series of digits to unsigned integer about
  * twice as fast as atoi (by not having to skip white 
  * space or stop except at the null byte.) */