Reinstated the use of EUID/UUID in blog posts; however this time they are not being...
[citadel.git] / libcitadel / lib / libcitadel.h
1 /*
2  * Header file for libcitadel
3  */
4
5
6 /* protect against double includes */
7 #ifndef LIBCITADEL_H
8 #define LIBCITADEL_H
9
10
11 /*
12  * since we reference time_t...
13  */
14 #include <time.h>
15 #include <stdlib.h>
16 #include <stdarg.h>
17 #define LIBCITADEL_VERSION_NUMBER       789
18
19 /*
20  * Here's a bunch of stupid magic to make the MIME parser portable.
21  */
22 #ifndef SIZ
23 #define SIZ     4096
24 #endif
25
26
27 typedef enum AXLevel {
28         AxDeleted = 0,
29         AxNewU = 1,
30         AxProbU = 2,
31         AxLocU = 3,
32         AxNetU = 4,
33         AxPrefU = 5,
34         AxAideU = 6
35 }eUsrAxlvl;
36
37 enum RoomNetCfg {
38         subpending,
39         unsubpending,
40         lastsent, /* Server internal use only */
41         ignet_push_share,
42         listrecp,
43         digestrecp,
44         pop3client,
45         rssclient,
46         participate,
47         maxRoomNetCfg
48 };
49
50 enum GNET_POP3_PARTS { /* pop3client splits into these columns: */
51         GNET_POP3_HOST = 1,
52         GNET_POP3_USER = 2,
53         GNET_POP3_PASS = 4,
54         GNET_POP3_DONT_DELETE_REMOTE = 4,
55         GNET_POP3_INTERVAL = 5
56 };
57
58 enum GNET_PUSH_SHARE { /* ignet_push_share splits into these columns: */
59         GNET_IGNET_NODE = 1,
60         GNET_IGNET_ROOM = 2
61 };
62
63 typedef enum __GPEXWhichPolicy {
64         roompolicy,
65         floorpolicy,
66         sitepolicy,
67         mailboxespolicy,
68         maxpolicy
69 }GPEXWhichPolicy;
70
71 /*
72  * View definitions.
73  * Note that not all views are implemented in all clients.
74  */
75 typedef enum _room_views {
76         VIEW_BBS                = 0,    /* Bulletin board view */
77         VIEW_MAILBOX            = 1,    /* Mailbox summary */
78         VIEW_ADDRESSBOOK        = 2,    /* Address book view */
79         VIEW_CALENDAR           = 3,    /* Calendar view */
80         VIEW_TASKS              = 4,    /* Tasks view */
81         VIEW_NOTES              = 5,    /* Notes view */
82         VIEW_WIKI               = 6,    /* Wiki view */
83         VIEW_CALBRIEF           = 7,    /* Brief Calendar view */
84         VIEW_JOURNAL            = 8,    /* Journal view */
85         VIEW_DRAFTS             = 9,    /* Drafts view */
86         VIEW_BLOG               = 10,   /* Blog view */
87         VIEW_MAX
88 } ROOM_VIEWS;
89
90 #define BLOG_EUIDBUF_SIZE       40
91
92 #ifndef IsEmptyStr
93 #define IsEmptyStr(a) ((a)[0] == '\0')
94 #endif
95
96
97 /*
98  * another word to indicate n/a for a pointer if NULL already has a "meaning"
99  */
100 extern const char *StrBufNOTNULL;
101
102 /*
103  * Misc declarations
104  */
105
106 char *libcitadel_version_string(void);
107 int libcitadel_version_number(void);
108 void StartLibCitadel(size_t basesize);
109 void ShutDownLibCitadel(void);
110
111 /*
112  * MIME parser declarations
113  */
114
115 long extract_key(char *target, char *source, long sourcelen, char *key, long keylen, char KeyEnd);
116
117
118 typedef void (*MimeParserCallBackType)(char *cbname,
119                                        char *cbfilename,
120                                        char *cbpartnum,
121                                        char *cbdisp,
122                                        void *cbcontent,
123                                        char *cbtype,
124                                        char *cbcharset,
125                                        size_t cblength,
126                                        char *cbencoding,
127                                        char *cbid,
128                                        void *cbuserdata);
129
130 void mime_parser(char *content_start, char *content_end,
131                  MimeParserCallBackType CallBack,
132                  MimeParserCallBackType PreMultiPartCallBack,
133                  MimeParserCallBackType PostMultiPartCallBack,
134                  void *userdata,
135                  int dont_decode);
136
137
138
139 char *fixed_partnum(char *);
140 void mime_decode(char *partnum,
141                  char *part_start, size_t length,
142                  char *content_type, char *charset, char *encoding,
143                  char *disposition,
144                  char *id,
145                  char *name, char *filename,
146                  MimeParserCallBackType CallBack,
147                  MimeParserCallBackType PreMultiPartCallBack,
148                  MimeParserCallBackType PostMultiPartCallBack,
149                  void *userdata,
150                  int dont_decode);
151 int mime_decode_now (char *part_start, 
152                      size_t length,
153                      char *encoding,
154                      char **decoded,
155                      size_t *bytes_decoded);
156 void the_mime_parser(char *partnum,
157                      char *content_start, char *content_end,
158                      MimeParserCallBackType CallBack,
159                      MimeParserCallBackType PreMultiPartCallBack,
160                      MimeParserCallBackType PostMultiPartCallBack,
161                      void *userdata,
162                      int dont_decode);
163
164 typedef struct StrBuf StrBuf;
165
166 #define strof(a) #a
167 #define CStrOf(a) #a, sizeof(#a) - 1
168 typedef struct _ConstStr {
169         const char *Key;
170         long len;
171 }ConstStr;
172 #define CKEY(a) (a).Key, (a).len
173
174 StrBuf* NewStrBuf(void);
175 StrBuf* NewStrBufDup(const StrBuf *CopyMe);
176 StrBuf* NewStrBufPlain(const char* ptr, int nChars);
177 long StrBufShrinkToFit(StrBuf *Buf, int Force);
178 void ReAdjustEmptyBuf(StrBuf *Buf, long ThreshHold, long NewSize);
179 void NewStrBufDupAppendFlush(StrBuf **CreateRelpaceMe, StrBuf *CopyFlushMe, const char *NoMe, int KeepOriginal);
180
181 int StrBufPlain(StrBuf *Buf, const char* ptr, int nChars);
182 StrBuf* _NewConstStrBuf(const char* StringConstant, size_t SizeOfStrConstant);
183 #define NewConstStrBuf(a) _NewConstStrBuf(a, sizeof(a))
184 void FreeStrBuf (StrBuf **FreeMe);
185 char *SmashStrBuf (StrBuf **SmashMe);
186 void HFreeStrBuf (void *VFreeMe);
187 int FlushStrBuf(StrBuf *buf);
188 int FLUSHStrBuf(StrBuf *buf); /* expensive but doesn't leave content behind for others to find in case of errors */
189
190 const char *ChrPtr(const StrBuf *Str);
191 int StrLength(const StrBuf *Str);
192 #define SKEY(a) ChrPtr(a), StrLength(a)
193 long StrBufPeek(StrBuf *Buf, const char* ptr, long nThChar, char PeekValue);
194 long StrBufPook(StrBuf *Buf, const char* ptr, long nThChar, long nChars, char PookValue);
195
196 int StrBufTCP_read_line(StrBuf *buf, int *fd, int append, const char **Error);
197 int StrBufReadBLOB(StrBuf *Buf, int *fd, int append, long nBytes, const char **Error);
198 #define NNN_TERM 1
199 #define O_TERM 0
200 int StrBufReadBLOBBuffered(StrBuf *Buf, 
201                            StrBuf *IOBuf, 
202                            const char **BufPos,
203                            int *fd, 
204                            int append, 
205                            long nBytes, 
206                            int check, 
207                            const char **Error);
208 int StrBufTCP_read_buffered_line(StrBuf *Line, 
209                                  StrBuf *buf, 
210                                  int *fd, 
211                                  int timeout, 
212                                  int selectresolution, 
213                                  const char **Error);
214 int StrBufTCP_read_buffered_line_fast(StrBuf *Line, 
215                                       StrBuf *buf, 
216                                       const char **Pos,
217                                       int *fd, 
218                                       int timeout, 
219                                       int selectresolution, 
220                                       const char **Error);
221
222 int StrBufSipLine(StrBuf *LineBuf, StrBuf *Buf, const char **Ptr);
223 int StrBufReplaceToken(StrBuf *Buf, long where, long HowLong, const char *Repl, long ReplLen);
224 int StrBufExtract_token(StrBuf *dest, const StrBuf *Source, int parmnum, char separator);
225 int StrBufSub(StrBuf *dest, const StrBuf *Source, unsigned long Offset, size_t nChars);
226
227 unsigned long StrBufExtract_unsigned_long(const StrBuf* Source, int parmnum, char separator);
228 long StrBufExtract_long(const StrBuf* Source, int parmnum, char separator);
229 int StrBufExtract_int(const StrBuf* Source, int parmnum, char separator);
230 int StrBufNum_tokens(const StrBuf *source, char tok);
231 int StrBufRemove_token(StrBuf *Source, int parmnum, char separator);
232
233 int StrBufHaveNextToken(const StrBuf *Source, const char **pStart);
234 int StrBufExtract_NextToken(StrBuf *dest, const StrBuf *Source, const char **pStart, char separator);
235 int StrBufSkip_NTokenS(const StrBuf *Source, const char **pStart, char separator, int nTokens);
236 unsigned long StrBufExtractNext_unsigned_long(const StrBuf* Source, const char **pStart, char separator);
237 long StrBufExtractNext_long(const StrBuf* Source, const char **pStart, char separator);
238 int StrBufExtractNext_int(const StrBuf* Source, const char **pStart, char separator);
239
240
241 void StrBufAppendBufPlain(StrBuf *Buf, const char *AppendBuf, long AppendSize, unsigned long Offset);
242 void StrBufAppendBuf(StrBuf *Buf, const StrBuf *AppendBuf, unsigned long Offset);
243 size_t CurlFillStrBuf_callback(void *ptr, size_t size, size_t nmemb, void *stream);
244 void StrBufAppendPrintf(StrBuf *Buf, const char *format, ...);
245 #ifdef SHOW_ME_VAPPEND_PRINTF
246 /* so owe don't create an include depndency, this is just visible on demand. */
247 void StrBufVAppendPrintf(StrBuf *Buf, const char *format, va_list ap);
248 #endif
249 void StrBufPrintf(StrBuf *Buf, const char *format, ...) __attribute__((__format__(__printf__,2,3)));
250 void StrBufCutLeft(StrBuf *Buf, int nChars);
251 void StrBufCutRight(StrBuf *Buf, int nChars);
252 void StrBufCutAt(StrBuf *Buf, int AfternChars, const char *At);
253 void StrBufTrim(StrBuf *Buf);
254 void StrBufSpaceToBlank(StrBuf *Buf);
255 void StrBufStripAllBut(StrBuf *Buf, char leftboundary, char rightboundary);
256 void StrBufUpCase(StrBuf *Buf);
257 void StrBufLowerCase(StrBuf *Buf);
258 void StrBufStripSlashes(StrBuf *Dir, int RemoveTrailingSlash);
259 void StrBufEUid_unescapize(StrBuf *target, const StrBuf *source);
260 void StrBufEUid_escapize(StrBuf *target, const StrBuf *source);
261
262 void StrBufToUnixLF(StrBuf *buf);
263 void StrBufReplaceChars(StrBuf *buf, char search, char replace);
264
265 int CompressBuffer(StrBuf *Buf);
266 void StrBufConvert(StrBuf *ConvertBuf, StrBuf *TmpBuf, void *pic);
267 void ctdl_iconv_open(const char *tocode, const char *fromcode, void *pic);
268 void StrBuf_RFC822_2_Utf8(StrBuf *Target, 
269                           const StrBuf *DecodeMe, 
270                           const StrBuf* DefaultCharset, 
271                           StrBuf *FoundCharset, 
272                           StrBuf *ConvertBuf, 
273                           StrBuf *ConvertBuf2);
274 /* deprecated old version: */
275 void StrBuf_RFC822_to_Utf8(StrBuf *Target, const StrBuf *DecodeMe, const StrBuf* DefaultCharset, StrBuf *FoundCharset);
276
277 int StrBufDecodeBase64(StrBuf *Buf);
278 int StrBufDecodeHex(StrBuf *Buf);
279 int StrBufRFC2047encode(StrBuf **target, const StrBuf *source);
280 StrBuf *StrBufSanitizeEmailRecipientVector(const StrBuf *Recp, 
281                                            StrBuf *UserName, 
282                                            StrBuf *EmailAddress,
283                                            StrBuf *EncBuf);
284 int StrBufSanitizeAscii(StrBuf *Buf, const char Mute);
285 #define LB                      (1)             /* Internal escape chars */
286 #define RB                      (2)
287 #define QU                      (3)
288 void StrBufUrlescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
289 void StrBufHexescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
290 long StrEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
291 long StrECMAEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
292 long StrHtmlEcmaEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
293 void StrMsgEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
294 void StrIcalEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
295
296 long StrTol(const StrBuf *Buf);
297 int StrToi(const StrBuf *Buf);
298 int StrBufIsNumber(const StrBuf *Buf);
299 long StrBuf_Utf8StrLen(StrBuf *Buf);
300 long StrBuf_Utf8StrCut(StrBuf *Buf, int maxlen);
301
302 const char *GuessMimeType(const char *data, size_t dlen);
303 const char* GuessMimeByFilename(const char *what, size_t len);
304
305 /* Run once at Programstart */
306 int LoadIconDir(const char *DirName);
307
308 /* Select the icon for a given MIME type */
309 const char *GetIconFilename(char *MimeType, size_t len);
310
311
312 /* tools */
313
314
315 int safestrncpy(char *dest, const char *src, size_t n);
316 int num_tokens (const char *source, char tok);
317 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
318 long grab_token(char **dest, const char *source, int parmnum, char separator);
319 int extract_int (const char *source, int parmnum);
320 long extract_long (const char *source, int parmnum);
321 unsigned long extract_unsigned_long(const char *source, int parmnum);
322 void CtdlInitBase64Table(void);
323 size_t CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen, int linebreaks);
324 int CtdlDecodeBase64(char *dest, const char *source, size_t length);
325 unsigned int decode_hex(char *Source);
326 int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen);
327 void StripSlashes(char *Dir, int TrailingSlash);
328 size_t striplt(char *);
329 int haschar(const char *st, int ch);
330 void remove_token(char *source, int parmnum, char separator);
331 void fmt_date(char *buf, size_t n, time_t thetime, int seconds);
332 int is_msg_in_sequence_set(const char *mset, long msgnum);
333 char *memreadline(char *start, char *buf, int maxlen);
334 char *memreadlinelen(char *start, char *buf, int maxlen, int *retlen);
335 const char *cmemreadline(const char *start, char *buf, int maxlen);
336 const char *cmemreadlinelen(const char *start, char *buf, int maxlen, int *retlen);
337 #define IsEmptyStr(a) ((a)[0] == '\0')
338 #define num_parms(source)               num_tokens(source,(char)'|')
339 int stripout(char *str, char leftboundary, char rightboundary);
340 long stripallbut(char *str, char leftboundary, char rightboundary);
341 char *myfgets(char *s, int size, FILE *stream);
342 void urlesc(char *outbuf, size_t oblen, char *strbuf);
343 char *CtdlTempFileName(char *prefix1, int prefix2);
344 FILE *CtdlTempFile(void);
345 void generate_uuid(char *buf);
346 char *bmstrcasestr(char *text, const char *pattern);
347 char *bmstrcasestr_len(char *text, size_t textlen, const char *pattern, size_t patlen);
348 const char *cbmstrcasestr(const char *text, const char *pattern);
349 const char *cbmstrcasestr_len(const char *text, size_t textlen, const char *pattern, size_t patlen);
350 void CtdlMakeTempFileName(char *name, int len);
351 char *rfc2047encode(char *line, long length);
352 int is_msg_in_mset(const char *mset, long msgnum);
353 int pattern2(char *search, char *patn);
354 void stripltlen(char *, int *);
355 char *html_to_ascii(const char *inputmsg, int msglen, int screenwidth, int do_citaformat);
356 void LoadEntityList(char *FileName);
357
358
359
360 /* vCard stuff */
361
362 #define CTDL_VCARD_MAGIC        0xa1f9
363
364 /* This data structure represents a vCard object currently in memory. */
365 struct vCard {
366         int magic;
367         int numprops;
368         struct vCardProp {
369                 char *name;
370                 char *value;
371         } *prop;
372 };
373
374
375 struct vCard *vcard_new(void);
376 void vcard_add_prop(struct vCard *v, char *propname, char *propvalue);
377 struct vCard *vcard_load(char *vtext);
378 struct vCard *VCardLoad(StrBuf *vbtext);
379
380 void vcard_free(struct vCard *);
381 void vcard_set_prop(struct vCard *v, char *name, char *value, int append);
382 char *vcard_get_prop(struct vCard *v, char *propname, int is_partial,
383                         int instance, int return_propname);
384 char *vcard_serialize(struct vCard *);
385 void vcard_fn_to_n(char *vname, char *n, size_t vname_size);
386 void remove_charset_attribute(char *strbuf);
387 long StrBufUnescape(StrBuf *Buf, int StripBlanks);
388
389 /*
390  * Hash list implementation for Citadel
391  */
392 #define HKEY(a) a, (sizeof(a) - 1)
393
394 typedef struct HashList HashList;
395
396 typedef struct HashKey HashKey;
397
398 typedef struct HashPos HashPos;
399
400 typedef void (*DeleteHashDataFunc)(void * Data);
401 typedef const char *(*PrintHashContent)(void * Data);
402 typedef int (*CompareFunc)(const void* Item1, const void*Item2);
403 typedef long (*HashFunc)(const char *Str, long Len);
404 typedef void (*TransitionFunc) (void *Item1, void *Item2, int Odd);
405 typedef void (*PrintHashDataFunc) (const char *Key, void *Item, int Odd);
406
407 long Flathash(const char *str, long len);
408 long lFlathash(const char *str, long len);
409 #define IKEY(a) (const char*) &a, sizeof(a)
410 #define LKEY(a) (const char*) &a, sizeof(a)
411
412 HashList *NewHash(int Uniq, HashFunc F);
413 void DeleteHash(HashList **Hash);
414 void HDeleteHash(void *vHash);
415 int GetHash(HashList *Hash, const char *HKey, long HKLen, void **Data);
416 void Put(HashList *Hash, const char *HKey, long HKLen, void *Data, DeleteHashDataFunc DeleteIt);
417 int GetKey(HashList *Hash, char *HKey, long HKLen, void **Data);
418 int GetHashKeys(HashList *Hash, char ***List);
419 int dbg_PrintHash(HashList *Hash, PrintHashContent first, PrintHashContent Second);
420 int PrintHash(HashList *Hash, TransitionFunc Trans, PrintHashDataFunc PrintEntry);
421 HashPos *GetNewHashPos(HashList *Hash, int StepWidth);
422 int GetHashPosFromKey(HashList *Hash, const char *HKey, long HKLen, HashPos *At);
423 int DeleteEntryFromHash(HashList *Hash, HashPos *At);
424 int GetHashPosCounter(HashList *Hash, HashPos *At);
425 void DeleteHashPos(HashPos **DelMe);
426 int NextHashPos(HashList *Hash, HashPos *At);
427 int GetHashPos(HashList *Hash, HashPos *At, long *HKLen, const char **HashKey, void **Data);
428 int GetNextHashPos(HashList *Hash, HashPos *At, long *HKLen, const char **HashKey, void **Data);
429 int GetHashAt(HashList *Hash,long At, long *HKLen, const char **HashKey, void **Data);
430 void SortByHashKey(HashList *Hash, int Order);
431 void SortByHashKeyStr(HashList *Hash);
432 int GetCount(HashList *Hash);
433 const void *GetSearchPayload(const void *HashVoid);
434 void SortByPayload(HashList *Hash, CompareFunc SortBy);
435 void reference_free_handler(void *ptr);
436 int HashLittle(const void *key, size_t length);
437
438 typedef struct MSet MSet;
439 int ParseMSet(MSet **MsetList, StrBuf *MSetStr);
440 int IsInMSetList(MSet *MSetList, long MsgNo);
441 void DeleteMSet(MSet **FreeMe);
442
443 void convert_spaces_to_underscores(char *str);
444 int CheckEncode(const char *pch, long len, const char *pche);
445
446 /*
447  * Convert 4 bytes char into an Integer.
448  * usefull for easy inexpensive hashing 
449  * of for char strings.
450  */
451 #define CHAR4TO_INT(a) ((int) (a[0] | (a[1]<<8) | (a[2]<<16) | (a[3]<<24)))
452
453 /* vNote implementation */
454
455 #define CTDL_VNOTE_MAGIC        0xa1fa
456
457 struct vnote {
458         int magic;
459         char *uid;
460         char *summary;
461         char *body;
462         int pos_left;
463         int pos_top;
464         int pos_width;
465         int pos_height;
466         int color_red;
467         int color_green;
468         int color_blue;
469 };
470
471
472
473 struct vnote *vnote_new(void);
474 struct vnote *vnote_new_from_str(char *s);
475 void vnote_free(struct vnote *v);
476 char *vnote_serialize(struct vnote *v);
477 void vnote_serialize_output_field(char *append_to, char *field, char *label);
478
479
480
481
482 /*
483  * Create JSON style structures in C plus serialize them to one string
484  */
485
486 typedef struct JsonValue JsonValue;
487
488
489 void DeleteJSONValue(void *vJsonValue);
490
491 JsonValue *NewJsonObject(const char *Key, long keylen);
492
493 JsonValue *NewJsonArray(const char *Key, long keylen);
494
495 JsonValue *NewJsonNumber(const char *Key, long keylen, long Number);
496
497 JsonValue *NewJsonBigNumber(const char *Key, long keylen, double Number);
498
499 JsonValue *NewJsonString(const char *Key, long keylen, StrBuf *CopyMe);
500
501 JsonValue *NewJsonPlainString(const char *Key, long keylen, const char *CopyMe, long len);
502
503 JsonValue *NewJsonNull(const char *Key, long keylen);
504
505 JsonValue *NewJsonBool(const char *Key, long keylen, int value);
506
507 void JsonArrayAppend(JsonValue *Array, JsonValue *Val);
508
509 void JsonObjectAppend(JsonValue *Array, JsonValue *Val);
510
511 void SerializeJson(StrBuf *Target, JsonValue *Val, int FreeVal);
512
513
514
515 /*
516  * Citadels Wildfire implementation, see 
517  * http://www.firephp.org/Wiki/Reference/Protocol
518  * and http://wildfirehq.org/ for details
519  */
520 typedef void (*AddHeaderFunc)(const char *HdrName, const char *HdrValue);
521
522 typedef enum _WF_MessageType {
523         eLOG, 
524         eINFO,
525         eWARN,
526         eERROR,
527         eTRACE,
528         eEXCEPTION
529 } WF_MessageType;
530
531 JsonValue *WildFireException(const char *Filename, long FileLen,
532                              long LineNo,
533                              StrBuf *Message,
534                              int StackOffset);
535
536 void WildFireAddArray(JsonValue *ReportBase, JsonValue *Array, WF_MessageType Type);
537
538 JsonValue *WildFireMessagePlain(const char *Filename, long fnlen,
539                                    long LineNo,
540                                    const char *Message, long len, 
541                                    WF_MessageType Type);
542
543 JsonValue *WildFireMessage(const char *Filename, long fnlen,
544                            long lineno,
545                            StrBuf *Msg, 
546                            WF_MessageType Type);
547
548 void WildFireInitBacktrace(const char *argvNull, int AddBaseFrameSkip);
549
550 void WildFireSerializePayload(StrBuf *JsonBuffer, StrBuf *OutBuf, int *MsgCount, AddHeaderFunc AddHdr);
551
552 #define WF_MAJOR "1"
553 #define WF_STRUCTINDEX "1"
554 #define WF_SUB "1"
555
556 extern ConstStr RoomNetCfgStrs[maxRoomNetCfg];
557
558 #endif  // LIBCITADEL_H