This file is indexed.

/usr/include/mailutils/debug.h is in libmailutils-dev 1:2.2+dfsg1-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/* -*- buffer-read-only: t -*- vi: set ro:
   THIS FILE IS GENERATED AUTOMATICALLY.  PLEASE DO NOT EDIT.
*/
/* GNU Mailutils -- a suite of utilities for electronic mail -*- c -*-
   Copyright (C) 1999, 2000, 2005, 2007, 2008, 2010 Free Software
   Foundation, Inc.

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 3 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General
   Public License along with this library; if not, write to the
   Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301 USA */

#ifndef _MAILUTILS_DEBUG_H
#define _MAILUTILS_DEBUG_H

#include <stdarg.h>

#include <mailutils/types.h>
#include <mailutils/error.h>

#define MU_DEBUG(d,l,s) MU_DEBUG1(d,l,"%s",s)

#ifdef __cplusplus
extern "C" {
#endif

#define MU_DEBUG_ERROR  0
#define MU_DEBUG_TRACE0 1
#define MU_DEBUG_TRACE MU_DEBUG_TRACE0
#define MU_DEBUG_TRACE1 2 
#define MU_DEBUG_TRACE2 3
#define MU_DEBUG_TRACE3 4
#define MU_DEBUG_TRACE4 5
#define MU_DEBUG_TRACE5 6
#define MU_DEBUG_TRACE6 7
#define MU_DEBUG_TRACE7 8 

#define MU_DEBUG_PROT   9

#define MU_DEBUG_LEVEL_MASK(lev) (1 << (lev))
#define MU_DEBUG_LEVEL_UPTO(lev) ((1 << ((lev)+1)) - 1)

#define MU_DEBUG_INHERIT    0xf0000
#define MU_DEBUG_EXTRACT_LEVEL(s) ((s) & ~MU_DEBUG_INHERIT)

struct mu_debug_locus
{
  const char *file;
  int line;
};
  
int mu_debug_create    (mu_debug_t *, void *);
void mu_debug_destroy  (mu_debug_t *, void *);
void *mu_debug_get_owner (mu_debug_t);
int mu_debug_set_level (mu_debug_t, mu_log_level_t);
int mu_debug_get_level (mu_debug_t, mu_log_level_t *);
int mu_debug_set_locus (mu_debug_t, const char *, int);
int mu_debug_get_locus (mu_debug_t, struct mu_debug_locus *);
int mu_debug_set_function (mu_debug_t, const char *);
int mu_debug_get_function (mu_debug_t, const char **);
  
int mu_debug_print     (mu_debug_t, mu_log_level_t, const char *, ...)
                         MU_PRINTFLIKE(3,4);
int mu_debug_printv    (mu_debug_t, mu_log_level_t, const char *, va_list);
int mu_debug_check_level (mu_debug_t, mu_log_level_t);

int mu_debug_printf (mu_debug_t, mu_log_level_t, const char *, ...)
                        MU_PRINTFLIKE(3,4);
  
int mu_debug_vprintf (mu_debug_t, mu_log_level_t, const char *, va_list);

extern int mu_debug_line_info;
  
typedef int (*mu_debug_printer_fp) (void*, mu_log_level_t, const char *);
  
int mu_debug_set_print (mu_debug_t, mu_debug_printer_fp, void *);
int mu_debug_set_data (mu_debug_t, void *, void (*) (void*), void *);
extern mu_debug_printer_fp mu_debug_default_printer;
  
int mu_debug_syslog_printer (void *, mu_log_level_t, const char *);
int mu_debug_stderr_printer (void *, mu_log_level_t, const char *);

mu_log_level_t mu_global_debug_level (const char *);
int mu_global_debug_set_level (const char *, mu_log_level_t);
int mu_global_debug_clear_level (const char *);
int mu_global_debug_from_string (const char *, const char *);
int mu_debug_level_from_string (const char *string, mu_log_level_t *plev,
				mu_debug_t debug);

struct sockaddr;
void mu_sockaddr_to_str (const struct sockaddr *sa, int salen,
			 char *bufptr, size_t buflen,
			 size_t *plen);
char *mu_sockaddr_to_astr (const struct sockaddr *sa, int salen);

  
  
#define MU_ASSERT(expr)						\
 do								\
  {								\
    int rc = expr;						\
    if (rc)							\
      {								\
	mu_error ("%s:%d: " #expr " failed: %s",                \
                  __FILE__, __LINE__, mu_strerror (rc));	\
	abort ();						\
      }								\
  }                                                             \
 while (0)

  

#define __MU_DEBUG1(dbg, lev, fmt, x1) \
 do \
   { \
     if (mu_debug_line_info) \
       { \
         mu_debug_set_locus (dbg, __FILE__, __LINE__); \
         mu_debug_set_function (dbg, __FUNCTION__); \
       } \
     mu_debug_printf (dbg, lev, fmt, x1); \
   } \
 while (0)

#define MU_DEBUG1(dbg, lev, fmt, x1) \
 do \
   { \
     if (mu_debug_check_level (dbg, lev)) \
       __MU_DEBUG1(dbg, lev, fmt, x1); \
   } \
 while(0)

#define __MU_DEBUG2(dbg, lev, fmt, x1, x2) \
 do \
   { \
     if (mu_debug_line_info) \
       { \
         mu_debug_set_locus (dbg, __FILE__, __LINE__); \
         mu_debug_set_function (dbg, __FUNCTION__); \
       } \
     mu_debug_printf (dbg, lev, fmt, x1, x2); \
   } \
 while (0)

#define MU_DEBUG2(dbg, lev, fmt, x1, x2) \
 do \
   { \
     if (mu_debug_check_level (dbg, lev)) \
       __MU_DEBUG2(dbg, lev, fmt, x1, x2); \
   } \
 while(0)

#define __MU_DEBUG3(dbg, lev, fmt, x1, x2, x3) \
 do \
   { \
     if (mu_debug_line_info) \
       { \
         mu_debug_set_locus (dbg, __FILE__, __LINE__); \
         mu_debug_set_function (dbg, __FUNCTION__); \
       } \
     mu_debug_printf (dbg, lev, fmt, x1, x2, x3); \
   } \
 while (0)

#define MU_DEBUG3(dbg, lev, fmt, x1, x2, x3) \
 do \
   { \
     if (mu_debug_check_level (dbg, lev)) \
       __MU_DEBUG3(dbg, lev, fmt, x1, x2, x3); \
   } \
 while(0)

#define __MU_DEBUG4(dbg, lev, fmt, x1, x2, x3, x4) \
 do \
   { \
     if (mu_debug_line_info) \
       { \
         mu_debug_set_locus (dbg, __FILE__, __LINE__); \
         mu_debug_set_function (dbg, __FUNCTION__); \
       } \
     mu_debug_printf (dbg, lev, fmt, x1, x2, x3, x4); \
   } \
 while (0)

#define MU_DEBUG4(dbg, lev, fmt, x1, x2, x3, x4) \
 do \
   { \
     if (mu_debug_check_level (dbg, lev)) \
       __MU_DEBUG4(dbg, lev, fmt, x1, x2, x3, x4); \
   } \
 while(0)

#define __MU_DEBUG5(dbg, lev, fmt, x1, x2, x3, x4, x5) \
 do \
   { \
     if (mu_debug_line_info) \
       { \
         mu_debug_set_locus (dbg, __FILE__, __LINE__); \
         mu_debug_set_function (dbg, __FUNCTION__); \
       } \
     mu_debug_printf (dbg, lev, fmt, x1, x2, x3, x4, x5); \
   } \
 while (0)

#define MU_DEBUG5(dbg, lev, fmt, x1, x2, x3, x4, x5) \
 do \
   { \
     if (mu_debug_check_level (dbg, lev)) \
       __MU_DEBUG5(dbg, lev, fmt, x1, x2, x3, x4, x5); \
   } \
 while(0)

#define __MU_DEBUG6(dbg, lev, fmt, x1, x2, x3, x4, x5, x6) \
 do \
   { \
     if (mu_debug_line_info) \
       { \
         mu_debug_set_locus (dbg, __FILE__, __LINE__); \
         mu_debug_set_function (dbg, __FUNCTION__); \
       } \
     mu_debug_printf (dbg, lev, fmt, x1, x2, x3, x4, x5, x6); \
   } \
 while (0)

#define MU_DEBUG6(dbg, lev, fmt, x1, x2, x3, x4, x5, x6) \
 do \
   { \
     if (mu_debug_check_level (dbg, lev)) \
       __MU_DEBUG6(dbg, lev, fmt, x1, x2, x3, x4, x5, x6); \
   } \
 while(0)

#define __MU_DEBUG7(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7) \
 do \
   { \
     if (mu_debug_line_info) \
       { \
         mu_debug_set_locus (dbg, __FILE__, __LINE__); \
         mu_debug_set_function (dbg, __FUNCTION__); \
       } \
     mu_debug_printf (dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7); \
   } \
 while (0)

#define MU_DEBUG7(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7) \
 do \
   { \
     if (mu_debug_check_level (dbg, lev)) \
       __MU_DEBUG7(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7); \
   } \
 while(0)

#define __MU_DEBUG8(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8) \
 do \
   { \
     if (mu_debug_line_info) \
       { \
         mu_debug_set_locus (dbg, __FILE__, __LINE__); \
         mu_debug_set_function (dbg, __FUNCTION__); \
       } \
     mu_debug_printf (dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8); \
   } \
 while (0)

#define MU_DEBUG8(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8) \
 do \
   { \
     if (mu_debug_check_level (dbg, lev)) \
       __MU_DEBUG8(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8); \
   } \
 while(0)

#define __MU_DEBUG9(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8, x9) \
 do \
   { \
     if (mu_debug_line_info) \
       { \
         mu_debug_set_locus (dbg, __FILE__, __LINE__); \
         mu_debug_set_function (dbg, __FUNCTION__); \
       } \
     mu_debug_printf (dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8, x9); \
   } \
 while (0)

#define MU_DEBUG9(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8, x9) \
 do \
   { \
     if (mu_debug_check_level (dbg, lev)) \
       __MU_DEBUG9(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8, x9); \
   } \
 while(0)

#define __MU_DEBUG10(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) \
 do \
   { \
     if (mu_debug_line_info) \
       { \
         mu_debug_set_locus (dbg, __FILE__, __LINE__); \
         mu_debug_set_function (dbg, __FUNCTION__); \
       } \
     mu_debug_printf (dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10); \
   } \
 while (0)

#define MU_DEBUG10(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) \
 do \
   { \
     if (mu_debug_check_level (dbg, lev)) \
       __MU_DEBUG10(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10); \
   } \
 while(0)

#define __MU_DEBUG11(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) \
 do \
   { \
     if (mu_debug_line_info) \
       { \
         mu_debug_set_locus (dbg, __FILE__, __LINE__); \
         mu_debug_set_function (dbg, __FUNCTION__); \
       } \
     mu_debug_printf (dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11); \
   } \
 while (0)

#define MU_DEBUG11(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) \
 do \
   { \
     if (mu_debug_check_level (dbg, lev)) \
       __MU_DEBUG11(dbg, lev, fmt, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11); \
   } \
 while(0)


#ifdef __cplusplus
}
#endif

#endif /* _MAILUTILS_DEBUG_H */