/*
 * Created by jiaqiang.ye@lnxall.com
 *
 * Template info collector
 *
 * 2024/07/04
 */

#ifndef TEMPLATE_INFO_H
#define TEMPLATE_INFO_H
#ifdef __cplusplus
extern "C" {
#endif
#include "lnxall_buffer.h"


int load_string_from_lua(const char * path,
    const char * funcname, char * * outp);

int template_info_collect(char* path, struct lnxall_buff* lbuff);
int get_all_temp_info(char* path, struct lnxall_buff* str);

#ifdef __cplusplus
}
#endif
#endif
