#include <cstdlib>
Go to the source code of this file.
|
vector< string > | Vectize (const char **) |
|
vector< string > | Vectize (const char **, int) |
|
const string | stripdir (const string &) |
|
bool | GetOp (const string &ops, const vector< string > &args) |
|
bool | GetOp (const string &ops, string &rv, const vector< string > &args) |
|
bool | CheckOps (const vector< string > &args, string &badop) |
|
void | AddOp (const string &lo, const char &so) |
|
#define RFLUCONV F_FUNC(RFLUCONV) |
#define RFLUINIT F_FUNC(RFLUINIT) |
#define RFLUMAP F_FUNC(RFLUMAP) |
#define RFLUPART F_FUNC(RFLUPART) |
#define RFLUPICK F_FUNC(RFLUPICK) |
#define RFLUPOST F_FUNC(RFLUPOST) |
void AddOp |
( |
const string & |
lo, |
|
|
const char & |
so |
|
) |
| |
bool CheckOps |
( |
const vector< string > & |
args, |
|
|
string & |
badop |
|
) |
| |
bool GetOp |
( |
const string & |
ops, |
|
|
const vector< string > & |
args |
|
) |
| |
bool GetOp |
( |
const string & |
ops, |
|
|
string & |
rv, |
|
|
const vector< string > & |
args |
|
) |
| |
const string stripdir |
( |
const string & |
| ) |
|
vector<string> Vectize |
( |
const char ** |
| ) |
|
Definition at line 182 of file clop.C.
References i.
Referenced by main().
184 vector<string> retVal;
187 retVal.push_back(in[i++]);
vector<string> Vectize |
( |
const char ** |
, |
|
|
int |
|
|
) |
| |
Definition at line 192 of file clop.C.
References i.
194 vector<string> retVal;
195 if(
n <= 0)
return retVal;
197 while((in[i] != NULL) && i <
n)
198 retVal.push_back(in[i++]);