X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fposixtm.c;h=2fe81ab6a01c83af43c8685382db3521f744d310;hb=7ef6c64e210ac0979d7e8ac69bc5b5208c2405ab;hp=4cffa8b7172f849295829267dfb31ec34c024043;hpb=e9ffb39caf8b0b1a5168af5e881aafa4997483f3;p=gnulib.git diff --git a/lib/posixtm.c b/lib/posixtm.c index 4cffa8b71..2fe81ab6a 100644 --- a/lib/posixtm.c +++ b/lib/posixtm.c @@ -1,6 +1,6 @@ /* Parse dates for touch and date. - Copyright (C) 1989-1991, 1998, 2000-2009 Free Software Foundation, Inc. + Copyright (C) 1989-1991, 1998, 2000-2014 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -37,7 +37,7 @@ - It's typically faster. POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to isdigit unless it's important to use the locale's definition - of `digit' even when the host does not conform to POSIX. */ + of "digit" even when the host does not conform to POSIX. */ #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) /* @@ -144,7 +144,7 @@ posix_time_parse (struct tm *tm, const char *s, unsigned int syntax_bits) len = 4; } - /* Handle 8 digits worth of `MMDDhhmm'. */ + /* Handle 8 digits worth of 'MMDDhhmm'. */ tm->tm_mon = *p++ - 1; tm->tm_mday = *p++; tm->tm_hour = *p++;