Changeset d091007 in mainline for boot/generic/include/gzip.h


Ignore:
Timestamp:
2021-06-04T16:58:15Z (3 years ago)
Author:
Martin Decky <martin@…>
Branches:
master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3c8c580
Parents:
da15002
Message:

Detect a compressed component by GZIP signature, not file extension

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/generic/include/gzip.h

    rda15002 rd091007  
    3030#define LIBCOMPRESS_GZIP_H_
    3131
     32#include <stdbool.h>
    3233#include <stddef.h>
    33 size_t gzip_size(const void *, size_t);
     34
     35extern bool gzip_check(const void *, size_t);
     36extern size_t gzip_size(const void *, size_t);
    3437extern int gzip_expand(const void *, size_t, void *, size_t);
    3538
Note: See TracChangeset for help on using the changeset viewer.