slog.h
来自「牛顿插值方法求解多项式的系数」· C头文件 代码 · 共 34 行
H
34 行
/* * (c) Copyright 1992, 1993 by Panagiotis Tsirigotis * All rights reserved. The file named COPYRIGHT specifies the terms * and conditions for redistribution. *//* * $Id: slog.h,v 1.3 2003/05/31 21:58:58 steveg Exp $ */#ifndef __SLOG_H#define __SLOG_Hstruct syslog_s{ int sl_facility ; int sl_default_level ;} ;struct syslog_parms{ int slp_n_xlogs ; /* # of xlogs using syslog */ int slp_logopts ; /* used at openlog */ int slp_facility ; const char *slp_ident ; /* used at openlog */ /* bool_int slp_ident_is_malloced ; */} ;#define SYSLOG( xp ) ((struct syslog_s *)xp->xl_data)#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?