I'm trying to write a macro that will loop through an entire file and find a "~" and insert a CR(carriage return) after it.
my feeble attempt went something like:
macro_file UNWRAP;
void UNWRAP()
{
while (!At_Eof)
{
if (Cur_Char == '~') {
right;
CR;
} else {
right;
}
Any help would greatly appreciated.
](./images/smilies/eusa_wall.gif)