blob: 79c36c902bbb71c5847d9bdcc3e2b5f421f90dae (
plain)
1
2
3
4
5
6
7
8
|
#include "help.h"
const char help_text[] __attribute__((weak)) = "";
const char quick_help_text[] __attribute__((weak)) = "";
const unsigned short help_text_len __attribute__((weak)) = 0, quick_help_text_len __attribute__((weak)) = 0, help_text_words __attribute__((weak)) = 0;
struct style_text help_text_style[] __attribute__((weak)) = {};
const bool help_valid __attribute__((weak)) = false;
|