?? assert.c
字號:
/* assert.c - ANSI standard assert function *//* Copyright 1992 Wind River Systems, Inc. *//*modification history--------------------01c,24oct92,smb removed some redundant documentation.01b,20sep92,smb documentation additions.01a,20jul92,smb written.*//*DESCRIPTIONINCLUDE FILES: stdio.h, stdlib.h, assert.hSEE ALSO: American National Standard X3.159-1989NOMANUAL*/#include "vxWorks.h"#include "assert.h"#include "stdio.h"#include "stdlib.h"/******************************************************************************** __assert - function called by the assert macro. ** INCLUDE: stdio.h assert.h** RETURNS: never returns* NOMANUAL*/void __assert ( const char *msg /* message string */ ) { fdprintf(2, "%s\n", CHAR_FROM_CONST (msg)); /* print msg to error stream */ abort(); }
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -