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

📄 strsep.c

📁 KPIT GNU Tools is a set of GNU development tools for Renesas microcontrollers.
💻 C
字号:
/* BSD strsep function *//* Copyright 2002, Red Hat Inc. *//* undef STRICT_ANSI so that strsep prototype will be defined */#undef  __STRICT_ANSI__#include <string.h>#include <_ansi.h>#include <reent.h>extern char *__strtok_r (char *, const char *, char **, int);char *_DEFUN (strsep, (source_ptr, delim),	register char **source_ptr _AND	register const char *delim){	return __strtok_r (*source_ptr, delim, source_ptr, 0);}

⌨️ 快捷键说明

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