#include "build.h"
#include "colors.h"
#include "kissat.h"
#include "print.h"
#include <stdio.h>
Go to the source code of this file.
◆ NL
Value: do { \
fputs ("\n", stdout); \
} while (0)
Definition at line 32 of file build.c.
32#define NL() \
33 do { \
34 fputs ("\n", stdout); \
35 COLOR (NORMAL); \
36 } while (0)
◆ PREFIX
Value: do { \
if (prefix) \
fputs (prefix, stdout); \
COLOR (COLORS); \
} while (0)
Definition at line 25 of file build.c.
25#define PREFIX(COLORS) \
26 do { \
27 if (prefix) \
28 fputs (prefix, stdout); \
29 COLOR (COLORS); \
30 } while (0)
◆ kissat_banner()
| void kissat_banner |
( |
const char * | prefix, |
|
|
const char * | name ) |
Definition at line 59 of file build.c.
59 {
61 if (!prefix)
62 connected_to_terminal = false;
63
67
70
73 fputs (line, stdout);
75 }
76
77 if (prefix) {
80 }
81
83}
const char ** kissat_copyright(void)
void kissat_build(const char *prefix)
◆ kissat_build()
| void kissat_build |
( |
const char * | prefix | ) |
|
Definition at line 38 of file build.c.
38 {
40 if (!prefix)
41 connected_to_terminal = false;
42
46 else
49
53
57}
◆ kissat_compiler()
| const char * kissat_compiler |
( |
void | | ) |
|
◆ kissat_copyright()
| const char ** kissat_copyright |
( |
void | | ) |
|
Definition at line 21 of file build.c.
21{ return copyright_lines; }
◆ kissat_id()
| const char * kissat_id |
( |
void | | ) |
|
◆ kissat_signature()
◆ kissat_version()
| const char * kissat_version |
( |
void | | ) |
|