77 lines
1.0 KiB
C
77 lines
1.0 KiB
C
#include "build.h"
|
|
#include "colors.h"
|
|
#include "print.h"
|
|
#include "kissat.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
const char *
|
|
kissat_id (void)
|
|
{
|
|
return ID;
|
|
}
|
|
|
|
const char *
|
|
kissat_version (void)
|
|
{
|
|
return VERSION;
|
|
}
|
|
|
|
const char *
|
|
kissat_compiler (void)
|
|
{
|
|
return COMPILER;
|
|
}
|
|
|
|
#define PREFIX(COLORS) \
|
|
do { \
|
|
if (prefix) \
|
|
fputs (prefix, stdout); \
|
|
COLOR (COLORS); \
|
|
} while (0)
|
|
|
|
#define NL() \
|
|
do { \
|
|
fputs ("\n", stdout); \
|
|
COLOR (NORMAL); \
|
|
} while (0)
|
|
|
|
void
|
|
kissat_banner (const char *prefix, const char *name)
|
|
{
|
|
TERMINAL (stdout, 1);
|
|
if (!prefix)
|
|
connected_to_terminal = false;
|
|
|
|
PREFIX (BOLD MAGENTA);
|
|
printf ("%s", name);
|
|
NL ();
|
|
|
|
PREFIX (BOLD MAGENTA);
|
|
printf ("Copyright (c) 2019-2020 Armin Biere JKU Linz");
|
|
NL ();
|
|
|
|
if (prefix)
|
|
{
|
|
PREFIX ("");
|
|
NL ();
|
|
}
|
|
|
|
PREFIX (MAGENTA);
|
|
if (ID)
|
|
printf ("Version %s %s", VERSION, ID);
|
|
else
|
|
printf ("Version %s", VERSION);
|
|
NL ();
|
|
|
|
PREFIX (MAGENTA);
|
|
printf ("%s", COMPILER);
|
|
NL ();
|
|
|
|
PREFIX (MAGENTA);
|
|
printf ("%s", BUILD);
|
|
NL ();
|
|
|
|
fflush (stdout);
|
|
}
|