The name of the application when launched in colorful text and the correct template in the console

I want to add the name of the application to a specific template with the color of the text when the application starts on the console. The template is similar to the example below.

                                    _   _ ____  _
 *  Project                     ___| | | |  _ \| |
 *                             / __| | | | |_) | |
 *                            | (__| |_| |  _ <| |___
 *                             \___|\___/|_| \_\_____|

Is there a library or API in C?

+3
source share
1 answer

You can use the VT100 commands. A good example is here: http://forums.anandtech.com/showthread.php?t=1278116

0
source

All Articles