teliva/src/tlv.h
Kartik K. Agaram 18a499c5c0 .
2022-01-02 16:35:01 -08:00

12 lines
270 B
C

#ifndef __TLV_H__
#define __TLV_H__
/* Helpers for working with the .tlv file format */
extern void teliva_load_definition (lua_State* L, FILE* in);
int is_special_history_key(const char* key);
extern void emit_multiline_string(FILE* out, const char* value);
#endif