libport.h

来自「minicom源碼,用於Linux下Terminal的重要程序」· C头文件 代码 · 共 26 行

H
26
字号
/* $Id: libport.h,v 1.1.1.1 2003/03/30 18:55:40 al-guest Exp $ */#ifndef H_LIBPORT#define H_LIBPORT#include <stdarg.h>#include <config.h>#ifndef HAVE_SNPRINTFextern int snprintf (char *str, size_t count, const char *fmt, ...);#endif#ifndef HAVE_VSNPRINTFextern int vsnprintf (char *str, size_t count, const char *fmt, va_list arg);#endif#ifndef HAVE_USLEEPint usleep(unsigned usecs);#endif#ifndef HAVE_ERROR/* TODO */#endif#endif /* !HLIB_PORT */

⌨️ 快捷键说明

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