CloverBootloader/rEFIt_UEFI/Platform/plist/base64.h
jief666 9cb4016bc5 Final refactoring of plist : now each tag is a class.
Rename strerror to efiStrError because of conflict when run cpp_tests on
Mac.
Switch base64_decode_block to long to avoid warning and cast.
Correct GetTableType4(). Size was used without being initialized.
2020-08-25 18:35:19 +03:00

17 lines
277 B
C

//
// base64.h
// cpp_tests
//
// Created by Jief on 24/08/2020.
// Copyright © 2020 JF Knudsen. All rights reserved.
//
#ifndef base64_h
#define base64_h
char *base64_encode(const unsigned char *data,
size_t input_length,
size_t *output_length);
#endif /* base64_h */