1// LAF Base Library
2// Copyright (c) 2001-2016 David Capello
3//
4// This file is released under the terms of the MIT license.
5// Read LICENSE.txt for more information.
6
7#ifndef BASE_CFILE_H_INCLUDED
8#define BASE_CFILE_H_INCLUDED
9#pragma once
10
11#include <cstdio>
12
13namespace base {
14
15 int fgetw(FILE* file);
16 long fgetl(FILE* file);
17 int fputw(int w, FILE* file);
18 int fputl(long l, FILE* file);
19
20} // namespace base
21
22#endif
23