24 lines
425 B
C
24 lines
425 B
C
|
|
#ifndef APFL_CONTEXT_H
|
||
|
|
#define APFL_CONTEXT_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include <stdbool.h>
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
#include "apfl.h"
|
||
|
|
|
||
|
|
bool apfl_encode_u64(struct apfl_io_writer, uint_least64_t );
|
||
|
|
bool apfl_decode_u64(struct apfl_io_reader, uint_least64_t *);
|
||
|
|
|
||
|
|
bool apfl_encode_double(struct apfl_io_writer, double);
|
||
|
|
bool apfl_decode_double(struct apfl_io_reader, double *);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|