Git Product home page Git Product logo

Comments (3)

xemeds avatar xemeds commented on May 30, 2024

I already forgot what the color codes were. I will definitely add macros to make it more understandable.
So lets say I defined this: #define CLI_CYAN_COLOR \033[0;36m
And I wanted to print a cyan Hello
How would I do that?

from obstruction-game.

jensboe avatar jensboe commented on May 30, 2024

#define CLI_CYAN_COLOR "\033[0;36m" Use quotes.
printf(CLI_CYAN_COLOR "Hello");
If you want to see what the precompiler does, add -E flag to gcc.
gcc -E file1.c

But that disadvantage of this approach is, that it will leave the CLI cyan. Maybe a custom printf_cyan()
function is better?

printf_cyan() // Definition musst look like orginal printf (which looks complicated and I don't look for it)
{
    returntypOfprintf returnvalue; // Only if printf has one
    printf(CLI_CYAN_COLOR);
    returnvalue = print(/*Arguments*/):
    printf(CLI_DEFAULT_COLOR);
    return returnvalue;
}

from obstruction-game.

xemeds avatar xemeds commented on May 30, 2024

Thank you for the clarification. There is a color code to reset back to normal. I will probably use that.

from obstruction-game.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.