Move to kernel style SPDX license identifiers
[babeltrace.git] / src / plugins / ctf / fs-src / file.h
... / ...
CommitLineData
1/*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (C) 2016 Philippe Proulx <pproulx@efficios.com>
5 */
6
7#ifndef CTF_FS_FILE_H
8#define CTF_FS_FILE_H
9
10#include <stdio.h>
11#include <glib.h>
12#include "common/macros.h"
13#include "fs.h"
14
15BT_HIDDEN
16void ctf_fs_file_destroy(struct ctf_fs_file *file);
17
18BT_HIDDEN
19struct ctf_fs_file *ctf_fs_file_create(bt_logging_level log_level,
20 bt_self_component *self_comp);
21
22BT_HIDDEN
23int ctf_fs_file_open(struct ctf_fs_file *file, const char *mode);
24
25#endif /* CTF_FS_FILE_H */
This page took 0.02405 seconds and 4 git commands to generate.