mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-29 03:24:02 +03:00
32 lines
1.0 KiB
C
32 lines
1.0 KiB
C
#ifndef __IDRIS_BUFFER_H
|
|
#define __IDRIS_BUFFER_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
void* idris2_newBuffer(int bytes);
|
|
void idris2_freeBuffer(void* buf);
|
|
|
|
int idris2_getBufferSize(void* buffer);
|
|
|
|
void idris2_setBufferByte(void* buffer, int loc, int byte);
|
|
void idris2_setBufferInt(void* buffer, int loc, int64_t val);
|
|
void idris2_setBufferDouble(void* buffer, int loc, double val);
|
|
void idris2_setBufferString(void* buffer, int loc, char* str);
|
|
|
|
void idris2_copyBuffer(void* from, int start, int len,
|
|
void* to, int loc);
|
|
|
|
// Reading and writing the raw data, to the pointer in the buffer
|
|
size_t idris2_readBufferData(FILE* h, char* buffer, size_t loc, size_t max);
|
|
size_t idris2_writeBufferData(FILE* h, const char* buffer, size_t loc, size_t len);
|
|
|
|
|
|
uint8_t idris2_getBufferByte(void* buffer, int loc);
|
|
int64_t idris2_getBufferInt(void* buffer, int loc);
|
|
double idris2_getBufferDouble(void* buffer, int loc);
|
|
char* idris2_getBufferString(void* buffer, int loc, int len);
|
|
|
|
#endif
|