diff options
Diffstat (limited to 'string')
-rw-r--r-- | string/strtok.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/string/strtok.c b/string/strtok.c index f45b760f74..9d6bb06779 100644 --- a/string/strtok.c +++ b/string/strtok.c @@ -1,4 +1,5 @@ -/* Copyright (C) 1991,1996,1997,1999,2000,2001 Free Software Foundation, Inc. +/* Copyright (C) 1991,1996,1997,1999,2000,2001,2007 + Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -30,7 +31,7 @@ static char *olds; x = strtok(s, "-"); // x = "abc" x = strtok(NULL, "-="); // x = "def" x = strtok(NULL, "="); // x = NULL - // s = "abc\0-def\0" + // s = "abc\0=-def\0" */ char * strtok (s, delim) |