NeoMadHatter
Platinum Member
i'm wondering if it's possible to get lines like this separated:
class Ab {
or:
class Ab{
into:
class
Ab
{
and like:
int f(int x,char z,double *x);
into:
int
f
int
x
char
z
double *
x
all i know so far is the matching part:
ie. m/class/;
thanks.
class Ab {
or:
class Ab{
into:
class
Ab
{
and like:
int f(int x,char z,double *x);
into:
int
f
int
x
char
z
double *
x
all i know so far is the matching part:
ie. m/class/;
thanks.