summaryrefslogtreecommitdiff
path: root/src/nslog_internal.h
blob: d5519e77e2a07d956d1b82c32ceebdf5e3fece6a (plain)
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
/*
 * Copyright 2017 Daniel Silverstone <dsilvers@netsurf-browser.org>
 *
 * This file is part of libnslog.
 *
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 */

/**
 * \file
 * NetSurf Logging
 */

#ifndef NSLOG_INTERNAL_H_
#define NSLOG_INTERNAL_H_

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <stdarg.h>
#include <assert.h>

#include "nslog/nslog.h"

bool nslog__filter_matches(nslog_entry_context_t *ctx);

#endif /* NSLOG_INTERNAL_H_ */