📄 strparse.h
字号:
/* * (c) Copyright 1992, 1993 by Panagiotis Tsirigotis * All rights reserved. The file named COPYRIGHT specifies the terms * and conditions for redistribution. */#ifndef __STRPARSE_H#define __STRPARSE_H/* * $Id: strparse.h,v 1.1.1.1 2003/02/19 17:29:27 bbraun Exp $ */struct str_handle{ char *string ; char *separator ; char *pos ; int flags ; int *errnop ; int no_more ;} ;#ifndef NULL#define NULL 0#endif#ifndef FALSE#define FALSE 0#define TRUE 1#endif#endif /* __STRPARSE_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -