Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2000 by BitterSweet Enterprises, LLC. |
| 4 | * Written by Karl M. Hegbloom <karlheg@debian.org> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | /* |
| 23 | * Let's put all of these messages in one place, and link this in as |
| 24 | * a separate object module, so that there are not going to be |
| 25 | * multiple non-unique but very similar strings in the binary. |
| 26 | * Perhaps this will make it simpler to internationalize also, and |
| 27 | * may make the binary slightly smaller. |
| 28 | */ |
| 29 | #ifndef _BB_MESSAGES_C |
| 30 | #define _BB_MESSAGES_C |
| 31 | |
| 32 | #define _BB_DEF_MESSAGE_PROTO(symbol) extern const char *symbol; |
| 33 | #define _BB_DEF_MESSAGE_INITIALIZE(symbol, string_const) const char *symbol = string_const; |
| 34 | |
| 35 | #ifdef BB_DECLARE_EXTERN |
| 36 | # define BB_DEF_MESSAGE(symbol, string_const) _BB_DEF_MESSAGE_PROTO(symbol) |
| 37 | #else |
| 38 | # define BB_DEF_MESSAGE(symbol, string_const) _BB_DEF_MESSAGE_INITIALIZE(symbol, string_const) |
| 39 | #endif |
| 40 | |
| 41 | #if defined bb_need_name_too_long || ! defined BB_DECLARE_EXTERN |
| 42 | BB_DEF_MESSAGE(name_too_long, "%s: file name too long\n") |
| 43 | #endif |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 44 | #if defined bb_need_omitting_directory || ! defined BB_DECLARE_EXTERN |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 45 | BB_DEF_MESSAGE(omitting_directory, "%s: %s: omitting directory\n") |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 46 | #endif |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 47 | #if defined bb_need_not_a_directory || ! defined BB_DECLARE_EXTERN |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 48 | BB_DEF_MESSAGE(not_a_directory, "%s: %s: not a directory\n") |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 49 | #endif |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 50 | #if defined bb_need_memory_exhausted || ! defined BB_DECLARE_EXTERN |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 51 | BB_DEF_MESSAGE(memory_exhausted, "%s: memory exhausted\n") |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 52 | #endif |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 53 | #if defined bb_need_invalid_date || ! defined BB_DECLARE_EXTERN |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 54 | BB_DEF_MESSAGE(invalid_date, "%s: invalid date `%s'\n") |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 55 | #endif |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 56 | #if defined bb_need_invalid_option || ! defined BB_DECLARE_EXTERN |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 57 | BB_DEF_MESSAGE(invalid_option, "%s: invalid option -- %c\n") |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 58 | #endif |
Erik Andersen | 1ad302a | 2000-03-24 00:54:46 +0000 | [diff] [blame] | 59 | #if defined bb_need_io_error || ! defined BB_DECLARE_EXTERN |
| 60 | BB_DEF_MESSAGE(io_error, "%s: input/output error -- %s\n") |
| 61 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 62 | #endif /* _BB_MESSAGES_C */ |