本文介绍了寻找strtok的实施的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在推出我的

之前,有没有人能指出我在C中的实现。


thx

解决方案



1ste Google结果:


- Jensen




1ste Google结果: ...


- Jensen



什么s [-1] = 0;在实现中意味着什么?




为什么? strtok()是标准C库的一部分,应始终

可用。


7.21.5.8 strtok函数

>
概要

[#1]

#include< string.h>

char * strtok(char * restrict s1 ,

const char * restrict s2);


-

[mail]:Chuck F(cinefalconer at maineline dot net )

[page]:< http://cbfalconer.home.att.net>

尝试下载部分。

**发布于 **

can anyone point me out to its implementation in C before I roll my
own.

thx

解决方案

1ste Google result:
http://www.openbsd.org/cgi-bin/cvswe...-cvsweb-markup

- Jensen



1ste Google result:http://www.openbsd.org/cgi-bin/cvswe...ng/strtok.c?re...

- Jensen

what does s[-1] = 0; in the implementation mean?


Why? strtok() is part of the standard C library, and should always
be available.

7.21.5.8 The strtok function

Synopsis
[#1]
#include <string.h>
char *strtok(char * restrict s1,
const char * restrict s2);

--
[mail]: Chuck F (cbfalconer at maineline dot net)
[page]: <http://cbfalconer.home.att.net>
Try the download section.
** Posted from http://www.teranews.com **


这篇关于寻找strtok的实施的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 00:10