blob: f532cc91bab2754c7e0935bc7e651a7411b239cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "default.h"
#include <stddef.h>
const char default_terms[] =
"Please enter your terms of service.\n"
"They can be modified from the TERMS file inside the prefix directory.\n"
"For example, a bullet list:\n"
"- Be nice to others.\n"
"- Do not upload illegal or harmful content.\n"
"A token can be generated by the administrator with tokengen(1).\n"
;
const size_t default_terms_len = sizeof default_terms - 1;
|