Mail Archives: djgpp/1994/01/27/01:46:15
> When I print the control characters to the screen, they show up as text
> characters instead of being interpretted as commands. I have ANSI.SYS
> installed.
Which C functions are you using? Some map to DOS calls which go through
ANSI.SYS, others do not. Printf at least should go through ANSI.
> I checked the lib directory and libpc.a is there. Does
> it contain all of the functions listed in pc.h?
Use the -lxxx option to tell the linker to use library libxxx.a, so you
probably need the -lpc option. (A quick look at my makefile shows -lc and
-lpc options.)
- Raw text -