该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
原来这个头文件中没有这个函数,那我用DEV的话怎样清屏?
/*
* conio.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
*
* Low level console I/O functions. Pretty please try to use the ANSI
* standard ones if you are writing new code.
*
*/
#ifndef_CONIO_H_
#define_CONIO_H_
/* All the headers include this file. */
#include <_mingw.h>
#ifndef RC_INVOKED
#ifdef__cplusplus
extern "C" {
#endif
_CRTIMP char* __cdecl_cgets (char*);
_CRTIMP int __cdecl_cprintf (const char*, ...);
_CRTIMP int __cdecl_cputs (const char*);
_CRTIMP int __cdecl_cscanf (char*, ...);
_CRTIMP int __cdecl_getch (void);
_CRTIMP int __cdecl_getche (void);
_CRTIMP int __cdecl_kbhit (void);
_CRTIMP int __cdecl_putch (int);
_CRTIMP int __cdecl_ungetch (int);
#ifndef_NO_OLDNAMES
_CRTIMP int __cdeclgetch (void);
_CRTIMP int __cdeclgetche (void);
_CRTIMP int __cdeclkbhit (void);
_CRTIMP int __cdeclputch (int);
_CRTIMP int __cdeclungetch (int);
#endif/* Not _NO_OLDNAMES */
#ifdef__cplusplus
}
#endif
#endif/* Not RC_INVOKED */
#endif/* Not _CONIO_H_ */