From dc233c7ddac813d13a3f9e21cf9e318b4548aa62 Mon Sep 17 00:00:00 2001 From: Ilias Lazaridis Date: Wed, 5 May 2004 04:45:46 +0000 Subject: [PATCH] removed documentation blocks --- harbour/source/codepage/cdpesdos.c | 55 +++++++++++++----------------- 1 file changed, 24 insertions(+), 31 deletions(-) diff --git a/harbour/source/codepage/cdpesdos.c b/harbour/source/codepage/cdpesdos.c index 3f88d15c0d..d9f0070452 100644 --- a/harbour/source/codepage/cdpesdos.c +++ b/harbour/source/codepage/cdpesdos.c @@ -51,43 +51,36 @@ * */ -/* Language name: Spanish */ -/* ISO language code (2 chars): ES */ -/* Codepage: 850 */ +// Language name: Spanish +// ISO language code (2 chars): ES +// Codepage: 850 #include #include "hbapi.h" #include "hbapicdp.h" -#define NUMBER_OF_CHARACTERS 33 /* The number of single characters in the - alphabet, two-as-one aren't considered - here, accented - are considered. */ -#define IS_LATIN 1 /* Should be 1, if the national alphabet - is based on Latin */ -#define ACCENTED_EQUAL 0 /* Should be 1, if accented character - has the same weight as appropriate - unaccented. */ -#define ACCENTED_INTERLEAVED 0 /* Should be 1, if accented characters - sort after their unaccented counterparts - only if the unaccented versions of all - characters being compared are the same - ( interleaving ) */ - -/* If ACCENTED_EQUAL or ACCENTED_INTERLEAVED is 1, you need to mark the - accented characters with the symbol '~' before each of them, for example: - a~€ - If there is two-character sequence, which is considered as one, it should - be marked with '.' before and after it, for example: - ... h.ch.i ... - - The Upper case string and the Lower case string should be absolutely the - same excepting the characters case, of course. - */ - -static HB_CODEPAGE s_codepage = { "ES", NUMBER_OF_CHARACTERS, - "AµBCDEFGHIÖJKLMN¥OàPQRSTUéšVWXYZ", "a bcde‚fghi¡jklmn¤o¢pqrstu£vwxyz", - IS_LATIN, ACCENTED_EQUAL, ACCENTED_INTERLEAVED, 0,NULL, NULL,NULL,NULL,0,NULL }; +#define NUMBER_OF_CHARACTERS 33 +#define IS_LATIN 1 +#define ACCENTED_EQUAL 0 +#define ACCENTED_INTERLEAVED 0 +static HB_CODEPAGE s_codepage = +{ + "ES", + NUMBER_OF_CHARACTERS, + "AµBCDEFGHIÖJKLMN¥OàPQRSTUéšVWXYZ", + "a bcde‚fghi¡jklmn¤o¢pqrstu£vwxyz", + IS_LATIN, + ACCENTED_EQUAL, + ACCENTED_INTERLEAVED, + 0, + NULL, + NULL, + NULL, + NULL, + 0, + NULL +}; HB_CODEPAGE_INIT( ES );