Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 58cfceb8 authored by Tao Bao's avatar Tao Bao Committed by Android Git Automerger
Browse files

am 75b3f8c9: am 87101256: Merge "libsparse: Wrap sparse_crc32.h to be C++ compatible."

* commit '75b3f8c9':
  libsparse: Wrap sparse_crc32.h to be C++ compatible.
parents 9faa258f 75b3f8c9
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -14,7 +14,19 @@
 * limitations under the License.
 */

#ifndef _LIBSPARSE_SPARSE_CRC32_H_
#define _LIBSPARSE_SPARSE_CRC32_H_

#include <stdint.h>

#ifdef __cplusplus
extern "C" {
#endif

uint32_t sparse_crc32(uint32_t crc, const void *buf, size_t size);

#ifdef __cplusplus
}
#endif

#endif