feat(build): use meson so I don't end up ripping my hair out

This commit is contained in:
2025-09-21 14:15:09 -04:00
parent 961e0472f5
commit 6e075bff4a
11 changed files with 102 additions and 89 deletions

View File

@@ -1,2 +1,20 @@
#pragma once
/**
* @brief get a substring of a string
*
* @param s string
* @param pos first pos
* @param l length
* @return the substring
*/
char *get_substring(char *s, int pos, int l);
/**
* @brief concatinate two strings
*
* @param s1 first
* @param s2 second
* @return the concatinated string
*/
char *concat(const char *s1, const char *s2);