blob: 3d018d0d027ad77edf068cd4d12528f9f173aab4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* SPDX-License-Identifier: LGPL-2.1-only */
/*
* The Rin Library – diagnostics module
*
* Copyright (C) 2015-2021 Gediminas Jakutis
*/
#ifndef LIBRIN_DIAGNOSTIC_PRIVATE_INCLUDED
#define LIBRIN_DIAGNOSTIC_PRIVATE_INCLUDED
#include <stdio.h>
#include <stdarg.h>
#include <errno.h>
#define RIN_NEED_GETTID
#include "rin/compat.h"
static void __rin_msg(FILE * const stream, const char *prefix, const char *func_name, int line_num, const char * const file_name, const char *rin_format, const char *format, va_list args);
static void rin_diag_cleanup(void);
#endif /* LIBRIN_DIAGNOSTIC_PRIVATE_INCLUDED */
|