aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/core/application.h
blob: c1642ec4428a848c5dd95042e5046ef108a8a41a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef OSMO_APPLICATION_H
#define OSMO_APPLICATION_H

/**
 * Routines for helping with the application setup.
 */

struct log_info;
struct log_target;

extern struct log_target *osmo_stderr_target;

void osmo_init_ignore_signals(void);
int osmo_init_logging(const struct log_info *);

#endif