Files
BlitzNext/Runtime/lib/bbstring.hpp
T

26 lines
602 B
C++
Raw Normal View History

2014-01-31 08:23:00 +13:00
#ifndef BBSTRING_H
#define BBSTRING_H
#include "basic.h"
2019-01-18 17:04:17 +01:00
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();
2014-01-31 08:23:00 +13:00
#endif