callisto/util.h
Jeremy Baxter 8c5777fb98 tree: add standard copyright phrasing
Callisto - standalone scripting platform for Lua 5.4
Copyright (c) 2023-2024 Jeremy Baxter.
2024-02-19 10:16:45 +13:00

20 lines
383 B
C

/*
* Callisto - standalone scripting platform for Lua 5.4
* Copyright (c) 2023-2024 Jeremy Baxter.
*/
#ifndef _UTIL_H_
#define _UTIL_H_
#include <stddef.h>
#include <lua.h>
int lfail(lua_State *);
int lfailm(lua_State *, const char *);
size_t strbcat(char *, const char *, size_t);
size_t strbcpy(char *, const char *, size_t);
void strprepend(char *, const char *);
#endif