--- org/strptime.3c	Tue Dec  1 11:10:49 2009
+++ strptime.3c	Tue Dec 15 17:29:28 2009
@@ -71,6 +71,15 @@
      %D    Date as %m/%d/%y.
 
      %e    Same as %d.
+                                                                              |
+     %F    Equivalent to %Y-%m-%d (the ISO 8601:2004 standard date            |
+           in extended format).                                               |
+                                                                              |
+     %g    Week-based year within century [00,99]; leading zero is            |
+           permitted but not required.                                        |
+                                                                              |
+     %G    Week-based year, including the century [0000,9999]; leading        |
+           zero is permitted but not required.                                |
 
      %h    Same as %b.
 
@@ -82,6 +91,10 @@
 
      %j    Day number of the year  [1,366];   leading  zeros  are
            permitted but not required.
+                                                                              |
+     %k    Same as %H.                                                        |
+                                                                              |
+     %l    Same as %I.                                                        |
 
      %m    Month number [1,12]; leading zero is permitted but not
            required.
@@ -92,6 +105,9 @@
      %n    Any white space.
 
      %p    Locale's equivalent of either a.m. or p.m.
+                                                                              |
+     %P    Locale's equivalent of either a.m. or p.m. in case-insensitive     |
+           manner.                                                            |
 
      %r    Appropriate time representation in the  12-hour  clock
            format with %p.
@@ -112,10 +128,21 @@
      %t    Any white space.
 
      %T    Time as %H:%M:%S.
+                                                                              |
+     %u    Weekday as a decimal number [1,7], with 1 representing             |
+           Monday.                                                            |
 
      %U    Week number of the year as a  decimal  number  [0,53],
            with Sunday as the first day of the week; leading zero
            is permitted but not required.
+                                                                              |
+     %V    The ISO 8601 week number as a decimal number  [01,53].             |
+           In  the  ISO  8601 week-based system, weeks begin on a             |
+           Monday and week  1  of  the  year  is  the  week  that             |
+           includes  both  January  4th and the first Thursday of             |
+           the year.  If the first Monday of January is the  2nd,             |
+           3rd,  or  4th, the preceding days are part of the last             |
+           week of the preceding year.                                        |
 
      %w    Weekday as a decimal number [0,6], with 0 representing
            Sunday.
@@ -135,6 +162,9 @@
            century (2000 to 2068 inclusive).
 
      %Y    Year, including the century (for example, 1993).
+                                                                              |
+     %z    Offset from UTC in ISO 8601:2004 standard basic format (+hhmm      |
+           or -hhmm), or no characters if no time zone is determinable.       |
 
      %Z    Time zone name  or  no  characters  if  no  time  zone
            exists.
@@ -258,20 +288,20 @@
      The   following    describes    extended    features    when
      _STRPTIME_DONTZERO is not defined:
 
-         o    If  %C  is  specified  and  %y  is  not  specified,
-              strptime()assumes 0 as the year offset, then calcu-
+         o    If %C is specified and neither %g nor %y are specified,         |
+              strptime() assumes 0 as the year offset, then calcu-            |
               lates the year, and assigns tm_year.
 
      The   following    describes    extended    features    when
      _STRPTIME_DONTZERO is defined:
 
-         o    If  %C  is  specified  and  %y  is  not  specified,
+         o    If %C is specified and neither %g nor %y is specified,          |
               strptime()  assumes  the  year  offset  of the year
               value of the tm_year member of the input tm struct,
               then calculates the year and assigns tm_year.
 
-         o    If %j is specified and neither %y, %Y, nor  %C  are
-              specified,  and  neither month nor day of month are
+         o    If %j is specified and neither %C, %g, %G, %y, nor %Y           |
+              are specified, and neither month nor day of month are           |
               specified, strptime() assumes the year value  given
               by  the  value of the tm_year field of the input tm
               struct.  Then,  in  addition  to  setting  tm_yday,
@@ -288,7 +318,7 @@
               of-month  and  assign  tm_month,  tm_mday,   and/or
               tm_year.
 
-         o    If %p is specified and if hour  is  not  specified,
+         o    If %p or %P is specified and if hour is not specified,          |
               strptime()  will  reference,  and if needed, update
               the tm_hour member. If the am_pm input is p.m.  and
               the   input  tm_hour  value  is  between  0  -  11,
