Here is a trivial program to test the italic text patch I just sent to -tech:

#include <stdio.h>

int main()
{
printf ("\n\x1b[mThis is normal text.\n");
printf ("\x1b[1mThis is bold text.\n");
printf ("\x1b[22;3mThis is italic text.\n");
printf ("\x1b[1mThis is bold and italic text.\n");
printf ("\x1b[mBack to normal.\n\n");
}

Reply via email to