#include <ze-sys.h>
#include <ze-libjc.h>
#include <ze-rfc2822.h>
Go to the source code of this file.
◆ APPEND_HEADER
#define APPEND_HEADER |
( |
|
head, |
|
|
|
hdr |
|
) |
| |
Value:do { \
if ((head) == NULL) { \
(head) = (hdr); \
} else { \
rfc2822_hdr_T *p = (head); \
while (p->next != NULL) \
p = p->next; \
p->next = (hdr); \
} \
} while (0) \
Definition at line 37 of file ze-rfc2822.c.
◆ LINESZ
◆ LOG_HEADER
Value:{ \
ZE_MessageInfo(15, "hdr->key : %s", h->key); \
ZE_MessageInfo(15, "hdr->value : %s", h->value); \
ZE_MessageInfo(15, "------------"); \
}
Definition at line 49 of file ze-rfc2822.c.
◆ str_clear_right_spaces
#define str_clear_right_spaces |
( |
|
s | ) |
(s) |