Stairs/src/charproperties.h
Mark van Renswoude d9d9b45956 Implemented timezone lookup
Very unstable at the moment, likely due to SSL's memory requirements combined with my lack of optimization
2018-01-18 23:20:43 +01:00

15 lines
287 B
C

/*
* Stairs
* Copyright 2017 (c) Mark van Renswoude
*
* https://git.x2software.net/pub/Stairs
*/
#ifndef __charproperties
#define __charproperties
#include <stdint.h>
void assignChar(char** field, const char* newValue);
bool sameStr(const char* value1, const char* value2);
#endif