13 lines
278 B
C
13 lines
278 B
C
|
#pragma once
|
||
|
#include <stdbool.h>
|
||
|
#include <libintl.h>
|
||
|
#include "types.h"
|
||
|
|
||
|
#define _(x) gettext(x)
|
||
|
|
||
|
void pdebug(lm_ctx_t *ctx, const char *func, const char *fmt, ...);
|
||
|
bool contains(char *str, char s);
|
||
|
bool eq(char *s1, char *s2);
|
||
|
bool is_letter(char c);
|
||
|
bool is_digit(char c);
|