This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
wongola/std/io.hpp

9 lines
140 B
C++
Raw Normal View History

2023-09-29 09:01:46 +00:00
#ifndef IO_HPP
#define IO_HPP
2023-09-29 16:26:05 +00:00
#include "../lib/Mod.hpp"
2023-09-29 09:01:46 +00:00
2023-09-29 16:26:05 +00:00
extern "C" std::unique_ptr<wg::Mod> lib_io();
extern "C" int hello(int x);
2023-09-29 09:01:46 +00:00
#endif