⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 misc.h

📁 浏览器的源代码,可移植到嵌入式设备.
💻 H
字号:
#ifndef __MISC_H__#define __MISC_H__#include <stdlib.h>gchar *a_Misc_prepend_user_home(const char *file);gchar *a_Misc_escape_chars(const gchar *str, gchar *esc_set);gchar *a_Misc_stuff_chars(const gchar *str, const gchar *esc_set);gchar *a_Misc_stristr(char *src, char *str);gchar *a_Misc_expand_tabs(const char *str);gchar *a_Misc_strsep(char **orig, const char *delim);#define d_strsep a_Misc_strsepgint *a_Misc_strsplitpos(const gchar *str, const gchar *delim);gint *a_Misc_strsplitposdup(gint *pos);const gchar *a_Misc_get_content_type_from_data(void *Data, size_t Size);gint a_Misc_parse_geometry(gchar *geom, gint *x, gint *y, gint *w, gint *h);gchar *a_Misc_encode_base64(const gchar *in);/* Return a NULL-terminated string containing the characters from p1 to p2. */#define a_Misc_strpdup(s, p1, p2) g_strndup((s) + (p1), (p2) - (p1))#endif /* __MISC_H__ */

⌨️ 快捷键说明

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