feat(build): use meson so I don't end up ripping my hair out
This commit is contained in:
parent
961e0472f5
commit
6e075bff4a
11 changed files with 102 additions and 89 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue