代码拉取完成,页面将自动刷新
#ifndef NETWORK_STD_H_
#define NETWORK_STD_H_
/*###########################################################################*/
#include <iostream>
using namespace std;
extern ostream scerrhex;
extern ostream scouthex;
// Use for a sane and fast vector of bools.
typedef int big_bool;
const double PI = 3.141592658979323846;
/*===========================================================================*/
// Debugging
// Macros need to be used to accomplish this. Inlines won't work.
// Print position in code.
void spos(const char * file, int line);
#define Spos() spos(__FILE__, __LINE__)
// Print position in code and abort after printing message.
void sabort(const char * file, int line,
const char * message = "Program aborted.\n");
void sexit(const char * message = "Exiting.\n");
#define Rabort() sabort(__FILE__, __LINE__)
// Abort, printing position in code, if (! x).
void sassert(bool x, const char * file, int line);
#define Sassert(x) sassert((x), __FILE__, __LINE__)
inline void sconfirm(bool x, const char * message) { if (! x) sexit(message); }
/*===========================================================================*/
/*###########################################################################*/
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。