summaryrefslogtreecommitdiff
path: root/euler/include/cstdio
blob: 27073dbc993c441eb7a3bff656e9522c35ac910b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <euler/stream.hpp>
#include <stddef.h>

namespace std {

  typedef euler::stream FILE;

  FILE *fopen(const char *filename, const char *mode);
  int fclose(FILE *stream);

  size_t fread(void *buffer, size_t size, size_t count, FILE *stream);

}