Files
Michael Fabian 'Xaymar' Dirks 09be5488e1 runtime/lib: C++ify
2019-01-18 21:26:57 +01:00

22 lines
570 B
C++

#pragma once
#include "basic.hpp"
BBStr* bbString(BBStr* s, int n);
BBStr* bbLeft(BBStr* s, int n);
BBStr* bbRight(BBStr* s, int n);
BBStr* bbReplace(BBStr* s, BBStr* from, BBStr* to);
int bbInstr(BBStr* s, BBStr* t, int from);
BBStr* bbMid(BBStr* s, int o, int n);
BBStr* bbUpper(BBStr* s);
BBStr* bbLower(BBStr* s);
BBStr* bbTrim(BBStr* s);
BBStr* bbLSet(BBStr* s, int n);
BBStr* bbRSet(BBStr* s, int n);
BBStr* bbChr(int n);
int bbAsc(BBStr* s);
int bbLen(BBStr* s);
BBStr* bbHex(int n);
BBStr* bbBin(int n);
BBStr* bbCurrentDate();
BBStr* bbCurrentTime();