aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/problem_marker.c
blob: 1e0c2aedf6b2217117dc84105a8d4877be6b279c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

#include "hardinfo.h"

/* requires COMPILE_FLAGS "-std=c99" */

const char *problem_marker() {
    static const char as_markup[] = "<big><b>\u26A0</b></big>";
    static const char as_text[] = "(!)";
    if (params.markup_ok)
        return as_markup;
    else
        return as_text;
}