X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=h%2Fmime.h;h=dc37db2afff75a2cc9fa72dbb2c67359ed73579e;hp=d51e3af63f6cae43f346031da41499302e840434;hb=71ca16329d950bccd713a739ea430998b802aa23;hpb=a485ed478abbd599d8c9aab48934e7a26733ecb1 diff --git a/h/mime.h b/h/mime.h index d51e3af..dc37db2 100644 --- a/h/mime.h +++ b/h/mime.h @@ -1,6 +1,6 @@ /* - * mime.h -- definitions for MIME - */ +** mime.h -- definitions for MIME +*/ #define VRSN_FIELD "MIME-Version" #define VRSN_VALUE "1.0" @@ -19,9 +19,9 @@ && (c) != '.' && (c) != '[' && (c) != ']') /* - * Test for valid characters used in "token" - * as defined in RFC2045 - */ +** Test for valid characters used in "token" +** as defined in RFC2045 +*/ #define istoken(c) (!isspace (c) && !iscntrl (c) && (c) != '(' \ && (c) != ')' && (c) != '<' && (c) != '>' \ && (c) != '@' && (c) != ',' && (c) != ';' \ @@ -31,5 +31,3 @@ #define CPERLIN 76 #define BPERLIN (CPERLIN / 4) -#define LPERMSG 632 -#define CPERMSG (LPERMSG * CPERLIN)