13 lines
179 B
C++
13 lines
179 B
C++
|
|
#ifndef USERLIBS_H
|
|
#define USERLIBS_H
|
|
|
|
#include "basic.hpp"
|
|
|
|
void _bbLoadLibs(char* p);
|
|
|
|
const char* _bbStrToCStr(BBStr* str);
|
|
BBStr* _bbCStrToStr(const char* str);
|
|
|
|
#endif
|