Logger: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

28 June 2024

  • curprev 17:4217:42, 28 June 2024JMerkle talk contribs 3,091 bytes +87 No edit summary
  • curprev 17:3817:38, 28 June 2024JMerkle talk contribs 3,004 bytes +3,004 Created page with "// Module: log.c // // logging library // ANSI escape codes: // gist.github.com/fnky/458719343aabd01cfb17a3a4f7296797 #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <time.h> #include "log.h" #include <unistd.h> #ifndef u8 #define u8 uint8_t #define s8 int8_t #endif // Define ANSI colors, to be used within printf() text // The foreground colors 30 - 38, are the "normal" darker colors // The foreground colors 90 - 98, are the "bright" lighter colors..."