[BACK]Return to test-strsep.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

File: [cvsweb.bsd.lv] / mandoc / test-strsep.c (download)

Revision 1.2, Tue Oct 6 18:32:20 2015 UTC (8 years, 5 months ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_14_6, VERSION_1_14_5, VERSION_1_14_4, VERSION_1_14_3, VERSION_1_14_2, VERSION_1_14_1, VERSION_1_13_4, VERSION_1_13, HEAD
Changes since 1.1: +1 -1 lines

modernize style: "return" is not a function

#include <string.h>

int
main(void)
{
	char buf[6] = "aybxc";
	char *workp = buf;
	char *retp = strsep(&workp, "xy");
	return ! (retp == buf && buf[1] == '\0' && workp == buf + 2);
}