usage.src.h 779 B

123456789101112131415161718192021222324252627282930
  1. /* vi: set sw=8 ts=8: */
  2. /*
  3. * This file suffers from chronically incorrect tabification
  4. * of messages. Before editing this file:
  5. * 1. Switch you editor to 8-space tab mode.
  6. * 2. Do not use \t in messages, use real tab character.
  7. * 3. Start each source line with message as follows:
  8. * |<7 spaces>"text with tabs"....
  9. * or
  10. * |<5 spaces>"\ntext with tabs"....
  11. */
  12. #ifndef BB_USAGE_H
  13. #define BB_USAGE_H 1
  14. #define NOUSAGE_STR "\b"
  15. #if !ENABLE_USE_BB_CRYPT || ENABLE_USE_BB_CRYPT_SHA
  16. # define CRYPT_METHODS_HELP_STR "des,md5,sha256/512" \
  17. " (default "CONFIG_FEATURE_DEFAULT_PASSWD_ALGO")"
  18. #else
  19. # define CRYPT_METHODS_HELP_STR "des,md5" \
  20. " (default "CONFIG_FEATURE_DEFAULT_PASSWD_ALGO")"
  21. #endif
  22. INSERT
  23. #define busybox_notes_usage \
  24. "Hello world!\n"
  25. #endif