diff options
author | Timo Teräs <timo.teras@iki.fi> | 2015-04-08 11:08:16 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2015-04-08 11:08:16 +0300 |
commit | 23d0a2244aa712ca33aa4ea9655298c095b8f0ba (patch) | |
tree | 03b38d91a7ea302bde66267d23319ab8cea70749 /src/apk_blob.h | |
parent | 941fc1b10c00e904fb9fbd7b82e61f8f12e210bb (diff) | |
download | apk-tools-23d0a2244aa712ca33aa4ea9655298c095b8f0ba.tar.gz apk-tools-23d0a2244aa712ca33aa4ea9655298c095b8f0ba.tar.bz2 apk-tools-23d0a2244aa712ca33aa4ea9655298c095b8f0ba.tar.xz apk-tools-23d0a2244aa712ca33aa4ea9655298c095b8f0ba.zip |
ignore .apk-new files for overlays
Diffstat (limited to 'src/apk_blob.h')
-rw-r--r-- | src/apk_blob.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/apk_blob.h b/src/apk_blob.h index c19fb95..2d2e30e 100644 --- a/src/apk_blob.h +++ b/src/apk_blob.h @@ -95,6 +95,7 @@ apk_blob_t apk_blob_pushed(apk_blob_t buffer, apk_blob_t left); unsigned long apk_blob_hash_seed(apk_blob_t, unsigned long seed); unsigned long apk_blob_hash(apk_blob_t str); int apk_blob_compare(apk_blob_t a, apk_blob_t b); +int apk_blob_ends_with(apk_blob_t str, apk_blob_t suffix); int apk_blob_for_each_segment(apk_blob_t blob, const char *split, apk_blob_cb cb, void *ctx); |