PostGIS  3.0.6dev-r@@SVN_REVISION@@
bytebuffer.h File Reference
#include <stdlib.h>
#include <stdarg.h>
#include <stdint.h>
#include "varint.h"
#include "lwgeom_log.h"
Include dependency graph for bytebuffer.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  bytebuffer_t
 

Macros

#define BYTEBUFFER_STARTSIZE   512
 
#define BYTEBUFFER_STATICSIZE   1024
 

Functions

void bytebuffer_init_with_size (bytebuffer_t *b, size_t size)
 Allocate just the internal buffer of an existing bytebuffer_t struct. More...
 
void bytebuffer_destroy_buffer (bytebuffer_t *s)
 Free the bytebuffer_t and all memory managed within it. More...
 
void bytebuffer_append_byte (bytebuffer_t *s, const uint8_t val)
 Writes a uint8_t value to the buffer. More...
 
void bytebuffer_append_bytebuffer (bytebuffer_t *write_to, bytebuffer_t *write_from)
 Writes a uint8_t value to the buffer. More...
 
void bytebuffer_append_varint (bytebuffer_t *s, const int64_t val)
 Writes a signed varInt to the buffer. More...
 
void bytebuffer_append_uvarint (bytebuffer_t *s, const uint64_t val)
 Writes a unsigned varInt to the buffer. More...
 
size_t bytebuffer_getlength (const bytebuffer_t *s)
 Returns the length of the current buffer. More...
 
uint8_t * bytebuffer_get_buffer_copy (const bytebuffer_t *s, size_t *buffer_length)
 Returns a copy of the internal buffer. More...
 
const uint8_t * bytebuffer_get_buffer (const bytebuffer_t *s, size_t *buffer_length)
 Returns a read-only reference to the internal buffer. More...