From 613757e677d3ceb106219b55e98a3e27459e9c82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Wed, 2 Mar 2005 16:39:50 +0000 Subject: [PATCH] added a proto for strptime replaced copyright header with author git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11535 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/time.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/headers/posix/time.h b/headers/posix/time.h index 29dee63cbc..5463522eed 100644 --- a/headers/posix/time.h +++ b/headers/posix/time.h @@ -1,8 +1,9 @@ +/* +** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. +** Distributed under the terms of the Haiku License. +*/ #ifndef _TIME_H_ #define _TIME_H_ -/* -** Distributed under the terms of the OpenBeOS License. -*/ #include @@ -68,6 +69,7 @@ extern struct tm *localtime(const time_t *timer); extern struct tm *localtime_r(const time_t *timer, struct tm *tm); extern size_t strftime(char *buffer, size_t maxSize, const char *format, const struct tm *tm); +extern char *strptime(const char *buf, const char *format, struct tm *tm); /* special timezone support */ extern void tzset(void);