+ buf[0] = (lenenc << 4) | (buf[0] & 0xf);
+ }
+ if (!p) return len;
+
+ /* Apparently we need to store the length in 'p' */
+ buf[0] = (encoding << 6) | (buf[0] & 0x3f);
+ memcpy(p,buf,len);
+ return len;
+}
+
+/* Check if string pointed to by 'entry' can be encoded as an integer.
+ * Stores the integer value in 'v' and its encoding in 'encoding'.
+ * Warning: this function requires a NULL-terminated string! */
+static int zipTryEncoding(unsigned char *entry, long long *v, char *encoding) {
+ long long value;
+ char *eptr;
+
+ if (entry[0] == '-' || (entry[0] >= '0' && entry[0] <= '9')) {
+ value = strtoll(entry,&eptr,10);
+ if (eptr[0] != '\0') return 0;
+ if (value >= SHRT_MIN && value <= SHRT_MAX) {
+ *encoding = ZIP_ENC_SHORT;
+ } else if (value >= INT_MIN && value <= INT_MAX) {
+ *encoding = ZIP_ENC_INT;
+ } else {
+ *encoding = ZIP_ENC_LLONG;
+ }
+ *v = value;
+ return 1;
+ }
+ return 0;
+}
+
+static void zipSaveInteger(unsigned char *p, long long value, char encoding) {
+ short int s;
+ int i;
+ long long l;
+ if (encoding == ZIP_ENC_SHORT) {
+ s = value;
+ memcpy(p,&s,sizeof(s));
+ } else if (encoding == ZIP_ENC_INT) {
+ i = value;
+ memcpy(p,&i,sizeof(i));
+ } else if (encoding == ZIP_ENC_LLONG) {
+ l = value;
+ memcpy(p,&l,sizeof(l));
+ } else {
+ assert(NULL);
+ }
+}
+
+static long long zipLoadInteger(unsigned char *p, char encoding) {
+ short int s;
+ int i;
+ long long l, ret;
+ if (encoding == ZIP_ENC_SHORT) {
+ memcpy(&s,p,sizeof(s));
+ ret = s;
+ } else if (encoding == ZIP_ENC_INT) {
+ memcpy(&i,p,sizeof(i));
+ ret = i;
+ } else if (encoding == ZIP_ENC_LLONG) {
+ memcpy(&l,p,sizeof(l));
+ ret = l;
+ } else {
+ assert(NULL);