--- libcaca-tutorial.3caca-unpatched 2012-07-19 18:16:41.540902212 -0400 +++ libcaca-tutorial.3caca 2012-07-19 18:17:33.344903112 -0400 @@ -3,10 +3,12 @@ .nh .SH NAME libcaca-tutorial \- A libcaca tutorial +.SH DESCRIPTION First, a very simple working program, to check for basic libcaca functionalities\&. .PP .PP .nf +.ft CW #include int main(void) @@ -26,6 +28,7 @@ return 0; } +.ft .fi .PP .PP @@ -51,8 +54,9 @@ You can then compile this code on an UNIX-like system using the following commans (requiring \fCpkg-config\fP and \fCgcc\fP): .PP .nf +.ft CW gcc `pkg-config --libs --cflags caca` example\&.c -o example - +.ft .fi .PP