Beamlib
3.0.1
This is the Beam C++ class library.
|
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <BString.h>
#include <BError.h>
#include <signal.h>
#include <regex.h>
Macros | |
#define | STRIP 0x7f |
#define | MINUS '-' |
Functions | |
static int | gmatch (const char *s, const char *p) |
std::ostream & | operator<< (std::ostream &o, BString &s) |
std::istream & | operator>> (std::istream &i, BString &s) |
int | bstringListinList (BStringList &list, BString s) |
BString | blistToString (const BStringList &list) |
Convert a string list to a comma separated string. More... | |
BStringList | bstringToList (BString str, int stripSpaces) |
Convert a comma separated string to a string list. More... | |
BStringList | charToList (const char **str) |
BString | barrayToString (const BStringArray &list) |
Convert a string array to a comma separated string. More... | |
BStringArray | bstringToArray (BString str, int stripSpaces) |
Convert a comma separated string to a string array. More... | |
BStringArray | charToArray (const char **str) |
void | toBString (BString &v, BString &s) |
void | toBString (BStringList &v, BString &s) |
void | toBString (BInt32 &v, BString &s) |
void | toBString (BUInt32 &v, BString &s) |
void | toBString (BUInt64 &v, BString &s) |
void | toBString (BFloat64 &v, BString &s) |
void | fromBString (BString &s, BString &v) |
void | fromBString (BString &s, BStringList &v) |
void | fromBString (BString &s, BInt32 &v) |
void | fromBString (BString &s, BUInt32 &v) |
void | fromBString (BString &s, BUInt64 &v) |
void | fromBString (BString &s, BFloat64 &v) |
const char * | intToString (char *str, BUInt strLen, int value, int base) |
const char * | int64ToString (char *str, BUInt strLen, BInt64 value, int base) |
const char * | floatToString (char *str, BUInt strLen, BFloat32 f, BUInt precision) |
char * | bstrncpy (char *dest, const char *src, size_t n) |
char * | bstrtrim (char *str) |
Variables | |
static const BUInt8 | base64_decode_table [] |
#define STRIP 0x7f |
#define MINUS '-' |
|
static |
std::ostream& operator<< | ( | std::ostream & | o, |
BString & | s | ||
) |
std::istream& operator>> | ( | std::istream & | i, |
BString & | s | ||
) |
int bstringListinList | ( | BStringList & | list, |
BString | s | ||
) |
BString blistToString | ( | const BStringList & | list | ) |
Convert a string list to a comma separated string.
BStringList bstringToList | ( | BString | str, |
int | stripSpaces | ||
) |
Convert a comma separated string to a string list.
BStringList charToList | ( | const char ** | str | ) |
BString barrayToString | ( | const BStringArray & | list | ) |
Convert a string array to a comma separated string.
BStringArray bstringToArray | ( | BString | str, |
int | stripSpaces | ||
) |
Convert a comma separated string to a string array.
BStringArray charToArray | ( | const char ** | str | ) |
void toBString | ( | BStringList & | v, |
BString & | s | ||
) |
void fromBString | ( | BString & | s, |
BStringList & | v | ||
) |
const char* intToString | ( | char * | str, |
BUInt | strLen, | ||
int | value, | ||
int | base | ||
) |
char* bstrncpy | ( | char * | dest, |
const char * | src, | ||
size_t | n | ||
) |
char* bstrtrim | ( | char * | str | ) |
|
static |