📄 libbb_udhcp.h
字号:
/* libbb_udhcp.h - busybox compatability wrapper *//* bit of a hack, do this no matter what the order of the includes. * (for busybox) */#ifdef CONFIG_INSTALL_NO_USR#undef DEFAULT_SCRIPT#define DEFAULT_SCRIPT "/share/udhcpc/default.script"#endif#ifndef _LIBBB_UDHCP_H#define _LIBBB_UDHCP_H#ifdef IN_BUSYBOX#include "busybox.h"#ifdef CONFIG_FEATURE_UDHCP_SYSLOG#define UDHCP_SYSLOG#endif#ifdef CONFIG_FEATURE_UDHCP_DEBUG#define UDHCP_DEBUG#endif#define COMBINED_BINARY#include "version.h"#define xfopen bb_xfopen#else /* ! BB_VER */#include <stdlib.h>#include <stdio.h>#include <sys/sysinfo.h>#define TRUE 1#define FALSE 0#define xmalloc malloc#define xcalloc callocstatic inline FILE *xfopen(const char *file, const char *mode){ FILE *fp; if (!(fp = fopen(file, mode))) { perror("could not open input file"); exit(0); } return fp;}#endif /* BB_VER */#endif /* _LIBBB_UDHCP_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -