Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove a function which isn't use anywhere |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | e2a280fc890e2c7afa0e27908ab5c6f9 |
User & Date: | jan.nijtmans 2016-06-17 07:24:03 |
Context
2016-06-17
| ||
09:45 | More consistancy in using <br /> and <hr /> HTML tags check-in: 63220d94 user: jan.nijtmans tags: trunk | |
07:39 | Merge trunk check-in: 4887295a user: jan.nijtmans tags: pending-review | |
07:24 | Remove a function which isn't use anywhere check-in: e2a280fc user: jan.nijtmans tags: trunk | |
2016-06-16
| ||
22:14 | shrunk size of lead byte table for invalid_utf8, and took a shortcut to invalidate lead bytes between 0x80 & 0xBF inclusive check-in: 69328517 user: sdr tags: trunk | |
Changes
Changes to src/blob.c.
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 |
/* ** Return true if the blob contains a valid UUID_SIZE-digit base16 identifier. */ int blob_is_uuid(Blob *pBlob){ return blob_size(pBlob)==UUID_SIZE && validate16(blob_buffer(pBlob), UUID_SIZE); } int blob_is_uuid_n(Blob *pBlob, int n){ return blob_size(pBlob)==n && validate16(blob_buffer(pBlob), n); } /* ** Return true if the blob contains a valid 32-bit integer. Store ** the integer value in *pValue. */ int blob_is_int(Blob *pBlob, int *pValue){ const char *z = blob_buffer(pBlob); |
< < < |
651 652 653 654 655 656 657 658 659 660 661 662 663 664 |
/* ** Return true if the blob contains a valid UUID_SIZE-digit base16 identifier. */ int blob_is_uuid(Blob *pBlob){ return blob_size(pBlob)==UUID_SIZE && validate16(blob_buffer(pBlob), UUID_SIZE); } /* ** Return true if the blob contains a valid 32-bit integer. Store ** the integer value in *pValue. */ int blob_is_int(Blob *pBlob, int *pValue){ const char *z = blob_buffer(pBlob); |