mirror of
https://github.com/sheumann/hush.git
synced 2024-10-31 19:04:47 +00:00
5bc8c005a8
Signed-off-by: Pere Orga <gotrunks@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
23 lines
512 B
C
23 lines
512 B
C
/* vi: set sw=8 ts=8: */
|
|
/*
|
|
* This file suffers from chronically incorrect tabification
|
|
* of messages. Before editing this file:
|
|
* 1. Switch you editor to 8-space tab mode.
|
|
* 2. Do not use \t in messages, use real tab character.
|
|
* 3. Start each source line with message as follows:
|
|
* |<7 spaces>"text with tabs"....
|
|
* or
|
|
* |<5 spaces>"\ntext with tabs"....
|
|
*/
|
|
#ifndef BB_USAGE_H
|
|
#define BB_USAGE_H 1
|
|
|
|
#define NOUSAGE_STR "\b"
|
|
|
|
INSERT
|
|
|
|
#define busybox_notes_usage \
|
|
"Hello world!\n"
|
|
|
|
#endif
|