removed an unused function
authorArt Cancro <ajc@citadel.org>
Fri, 27 Oct 2023 17:57:43 +0000 (08:57 -0900)
committerArt Cancro <ajc@citadel.org>
Fri, 27 Oct 2023 17:57:43 +0000 (08:57 -0900)
libcitadel/lib/decode.c

index b2a93a9a5c2bf2bf73557dfdc96ea709e599a651..58e54b95a5b0b5f93ac06bee0a20fecd95398768 100644 (file)
 #include "libcitadel.h"
 
 
-// This is the non-define version in case it is needed for debugging
-#if 0
-inline void FindNextEnd (char *bptr, char *end) {
-       /* Find the next ?Q? */
-       end = strchr(bptr + 2, '?');
-       if (end == NULL) return NULL;
-       if (((*(end + 1) == 'B') || (*(end + 1) == 'Q')) && 
-           (*(end + 2) == '?')) {
-               /* skip on to the end of the cluster, the next ?= */
-               end = strstr(end + 3, "?=");
-       }
-       else
-               /* sort of half valid encoding, try to find an end. */
-               end = strstr(bptr, "?=");
-}
-#endif
-
 #define FindNextEnd(bptr, end) { \
        end = strchr(bptr + 2, '?'); \
        if (end != NULL) { \
@@ -45,6 +28,7 @@ inline void FindNextEnd (char *bptr, char *end) {
        } \
 }
 
+
 // Handle subjects with RFC2047 encoding such as:
 // =?koi8-r?B?78bP0s3Mxc7JxSDXz9rE1dvO2c3JINvB0sHNySDP?=
 void utf8ify_rfc822_string(char *buf) {