2024-06-20 00:34:32 +00:00
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
2024-06-20 22:36:56 +00:00
|
|
|
#include <libintl.h>
|
|
|
|
#include <stdbool.h>
|
2024-06-22 22:55:01 +00:00
|
|
|
#include <stdio.h>
|
2024-06-20 00:34:32 +00:00
|
|
|
|
|
|
|
#define _(x) gettext(x)
|
|
|
|
|
|
|
|
void pdebug(lm_ctx_t *ctx, const char *func, const char *fmt, ...);
|
2024-06-22 04:03:17 +00:00
|
|
|
bool parse_host(char *addr, char *host, uint16_t *port);
|
2024-06-20 00:34:32 +00:00
|
|
|
bool contains(char *str, char s);
|
|
|
|
bool eq(char *s1, char *s2);
|
|
|
|
bool is_letter(char c);
|
|
|
|
bool is_digit(char c);
|
2024-06-22 22:55:01 +00:00
|
|
|
bool copy_to_buffer(void *buffer, void *src, size_t size, ssize_t *total, ssize_t *used);
|
|
|
|
bool copy_from_buffer(void *dst, void *buffer, size_t size, ssize_t *total, ssize_t *used);
|