feat(ltm): start library
All checks were successful
ci/woodpecker/push/build Pipeline was successful
All checks were successful
ci/woodpecker/push/build Pipeline was successful
This commit is contained in:
parent
d53a949946
commit
4f4b780b28
6 changed files with 2032 additions and 0 deletions
11
ltm/src/ltm_template.c
Normal file
11
ltm/src/ltm_template.c
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#include <string.h>
|
||||
|
||||
#include "ltm/template.h"
|
||||
|
||||
ltm_err lnm_template_compile(lnm_template **out, const char *template) {
|
||||
return lnm_template_compile_n(out, template, strlen(template));
|
||||
}
|
||||
|
||||
ltm_err lnm_template_compile_n(lnm_template **out, const char *template, size_t len) {
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue