📄 misc.i
字号:
#line 1 "D:/working/tools/isim/misc.cpp"
#line 1 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#pragma once
#line 19 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 26 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#pragma pack(push,8)
#line 35 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
extern "C" {
#line 39 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 50 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 51 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 58 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 67 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 68 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
typedef unsigned int size_t;
#line 74 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
typedef unsigned short wchar_t;
#line 80 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 90 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 91 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
typedef int (__cdecl * _onexit_t)(void);
#line 105 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 107 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
typedef struct _div_t {
int quot;
int rem;
} div_t;
typedef struct _ldiv_t {
long quot;
long rem;
} ldiv_t;
#line 125 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
extern int __mb_cur_max;
#line 139 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 161 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 179 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
extern int errno;
extern unsigned long _doserrno;
#line 182 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
extern char * _sys_errlist[];
extern int _sys_nerr;
#line 221 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
extern int __argc;
extern char ** __argv;
extern wchar_t ** __wargv;
#line 227 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
extern char ** _environ;
extern wchar_t ** _wenviron;
#line 235 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 236 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
extern char * _pgmptr;
extern wchar_t * _wpgmptr;
#line 241 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 243 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
extern int _fmode;
extern int _fileinfo;
extern unsigned int _osver;
extern unsigned int _winver;
extern unsigned int _winmajor;
extern unsigned int _winminor;
__declspec(noreturn) void __cdecl abort(void);
__declspec(noreturn) void __cdecl exit(int);
#line 266 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 270 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
int __cdecl abs(int);
#line 272 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
int __cdecl atexit(void (__cdecl *)(void));
double __cdecl atof(const char *);
int __cdecl atoi(const char *);
long __cdecl atol(const char *);
void * __cdecl bsearch(const void *, const void *, size_t, size_t,
int (__cdecl *)(const void *, const void *));
void * __cdecl calloc(size_t, size_t);
div_t __cdecl div(int, int);
void __cdecl free(void *);
char * __cdecl getenv(const char *);
char * __cdecl _itoa(int, char *, int);
char * __cdecl _i64toa(__int64, char *, int);
char * __cdecl _ui64toa(unsigned __int64, char *, int);
__int64 __cdecl _atoi64(const char *);
#line 291 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 294 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
long __cdecl labs(long);
#line 296 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
ldiv_t __cdecl ldiv(long, long);
char * __cdecl _ltoa(long, char *, int);
void * __cdecl malloc(size_t);
int __cdecl mblen(const char *, size_t);
size_t __cdecl _mbstrlen(const char *s);
int __cdecl mbtowc(wchar_t *, const char *, size_t);
size_t __cdecl mbstowcs(wchar_t *, const char *, size_t);
void __cdecl qsort(void *, size_t, size_t, int (__cdecl *)
(const void *, const void *));
int __cdecl rand(void);
void * __cdecl realloc(void *, size_t);
int __cdecl _set_error_mode(int);
void __cdecl srand(unsigned int);
double __cdecl strtod(const char *, char **);
long __cdecl strtol(const char *, char **, int);
unsigned long __cdecl strtoul(const char *, char **, int);
int __cdecl system(const char *);
#line 318 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
char * __cdecl _ultoa(unsigned long, char *, int);
int __cdecl wctomb(char *, wchar_t);
size_t __cdecl wcstombs(char *, const wchar_t *, size_t);
wchar_t * __cdecl _itow (int, wchar_t *, int);
wchar_t * __cdecl _ltow (long, wchar_t *, int);
wchar_t * __cdecl _ultow (unsigned long, wchar_t *, int);
double __cdecl wcstod(const wchar_t *, wchar_t **);
long __cdecl wcstol(const wchar_t *, wchar_t **, int);
unsigned long __cdecl wcstoul(const wchar_t *, wchar_t **, int);
wchar_t * __cdecl _wgetenv(const wchar_t *);
int __cdecl _wsystem(const wchar_t *);
int __cdecl _wtoi(const wchar_t *);
long __cdecl _wtol(const wchar_t *);
wchar_t * __cdecl _i64tow(__int64, wchar_t *, int);
wchar_t * __cdecl _ui64tow(unsigned __int64, wchar_t *, int);
__int64 __cdecl _wtoi64(const wchar_t *);
#line 343 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 346 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 347 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
char * __cdecl _ecvt(double, int, int *, int *);
__declspec(noreturn) void __cdecl _exit(int);
#line 357 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
char * __cdecl _fcvt(double, int, int *, int *);
char * __cdecl _fullpath(char *, const char *, size_t);
char * __cdecl _gcvt(double, int, char *);
unsigned long __cdecl _lrotl(unsigned long, int);
unsigned long __cdecl _lrotr(unsigned long, int);
void __cdecl _makepath(char *, const char *, const char *, const char *,
const char *);
#line 366 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
_onexit_t __cdecl _onexit(_onexit_t);
void __cdecl perror(const char *);
int __cdecl _putenv(const char *);
unsigned int __cdecl _rotl(unsigned int, int);
unsigned int __cdecl _rotr(unsigned int, int);
void __cdecl _searchenv(const char *, const char *, char *);
void __cdecl _splitpath(const char *, char *, char *, char *, char *);
#line 375 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
void __cdecl _swab(char *, char *, int);
wchar_t * __cdecl _wfullpath(wchar_t *, const wchar_t *, size_t);
void __cdecl _wmakepath(wchar_t *, const wchar_t *, const wchar_t *, const wchar_t *,
const wchar_t *);
void __cdecl _wperror(const wchar_t *);
int __cdecl _wputenv(const wchar_t *);
void __cdecl _wsearchenv(const wchar_t *, const wchar_t *, wchar_t *);
void __cdecl _wsplitpath(const wchar_t *, wchar_t *, wchar_t *, wchar_t *, wchar_t *);
#line 392 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 393 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
void __cdecl _seterrormode(int);
void __cdecl _beep(unsigned, unsigned);
void __cdecl _sleep(unsigned long);
#line 401 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 404 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
int __cdecl tolower(int);
#line 413 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
int __cdecl toupper(int);
#line 416 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 418 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
char * __cdecl ecvt(double, int, int *, int *);
char * __cdecl fcvt(double, int, int *, int *);
char * __cdecl gcvt(double, int, char *);
char * __cdecl itoa(int, char *, int);
char * __cdecl ltoa(long, char *, int);
_onexit_t __cdecl onexit(_onexit_t);
int __cdecl putenv(const char *);
void __cdecl swab(char *, char *, int);
char * __cdecl ultoa(unsigned long, char *, int);
#line 446 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 448 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
}
#line 453 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#pragma pack(pop)
#line 457 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 459 "D:/Progra~1/Micros~2/VC98/Include\\stdlib.h"
#line 11 "D:/working/tools/isim/misc.cpp"
#line 1 "D:/Progra~1/Micros~2/VC98/Include\\iostream.h"
#pragma once
#line 18 "D:/Progra~1/Micros~2/VC98/Include\\iostream.h"
#line 27 "D:/Progra~1/Micros~2/VC98/Include\\iostream.h"
#pragma pack(push,8)
#line 1 "D:/Progra~1/Micros~2/VC98/Include\\useoldio.h"
#pragma comment(lib,"libci")
#line 41 "D:/Progra~1/Micros~2/VC98/Include\\useoldio.h"
#line 42 "D:/Progra~1/Micros~2/VC98/Include\\useoldio.h"
#line 44 "D:/Progra~1/Micros~2/VC98/Include\\useoldio.h"
#line 35 "D:/Progra~1/Micros~2/VC98/Include\\iostream.h"
#line 37 "D:/Progra~1/Micros~2/VC98/Include\\iostream.h"
typedef long streamoff, streampos;
#line 1 "D:/Progra~1/Micros~2/VC98/Include\\ios.h"
#pragma once
#line 18 "D:/Progra~1/Micros~2/VC98/Include\\ios.h"
#line 27 "D:/Progra~1/Micros~2/VC98/Include\\ios.h"
#pragma pack(push,8)
#line 1 "D:/Progra~1/Micros~2/VC98/Include\\useoldio.h"
#line 35 "D:/Progra~1/Micros~2/VC98/Include\\ios.h"
#line 37 "D:/Progra~1/Micros~2/VC98/Include\\ios.h"
#line 96 "D:/Progra~1/Micros~2/VC98/Include\\ios.h"
#pragma warning(disable:4514)
#line 102 "D:/Progra~1/Micros~2/VC98/Include\\ios.h"
class streambuf;
class ostream;
class ios {
public:
enum io_state { goodbit = 0x00,
eofbit = 0x01,
failbit = 0x02,
badbit = 0x04 };
enum open_mode { in = 0x01,
out = 0x02,
ate = 0x04,
app = 0x08,
trunc = 0x10,
nocreate = 0x20,
noreplace = 0x40,
binary = 0x80 };
enum seek_dir { beg=0, cur=1, end=2 };
enum { skipws = 0x0001,
left = 0x0002,
right = 0x0004,
internal = 0x0008,
dec = 0x0010,
oct = 0x0020,
hex = 0x0040,
showbase = 0x0080,
showpoint = 0x0100,
uppercase = 0x0200,
showpos = 0x0400,
scientific = 0x0800,
fixed = 0x1000,
unitbuf = 0x2000,
stdio = 0x4000
};
static const long basefield;
static const long adjustfield;
static const long floatfield;
ios(streambuf*);
virtual ~ios();
inline long flags() const;
inline long flags(long _l);
inline long setf(long _f,long _m);
inline long setf(long _l);
inline long unsetf(long _l);
inline int width() const;
inline int width(int _i);
inline ostream* tie(ostream* _os);
inline ostream* tie() const;
inline char fill() const;
inline char fill(char _c);
inline int precision(int _i);
inline int precision() const;
inline int rdstate() const;
inline void clear(int _i = 0);
operator void *() const { if(state&(badbit|failbit) ) return 0; return (void *)this; }
inline int operator!() const;
inline int good() const;
inline int eof() const;
inline int fail() const;
inline int bad() const;
inline streambuf* rdbuf() const;
inline long & iword(int) const;
inline void * & pword(int) const;
static long bitalloc();
static int xalloc();
static void sync_with_stdio();
void __cdecl lock() { }
void __cdecl unlock() { }
void __cdecl lockbuf() { }
void __cdecl unlockbuf() { }
#line 202 "D:/Progra~1/Micros~2/VC98/Include\\ios.h"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -