system.hpp

来自「实现把一个大电路划分成两个小电路」· HPP 代码 · 共 20 行

HPP
20
字号
// System dependent definitions and functions
// File: system.hpp

#ifndef SystemIncluded
#define SystemIncluded

#include <iostream.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>     // for seconds()
#ifdef BSD
#include <sys/time.h>
#include <sys/resource.h>
#endif


double seconds();

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?