1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Split the reentrant functions from the non-reentrant ones.

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14774 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2004-11-18 09:40:37 +00:00
parent 2d5193371a
commit 24ea9161a7
14 changed files with 571 additions and 341 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: time_headers.h,v 1.3 2004-11-14 11:06:27 obarthel Exp $
* $Id: time_headers.h,v 1.4 2004-11-18 09:40:37 obarthel Exp $
*
* :ts=4
*
@ -91,6 +91,7 @@ extern const char * const NOCOMMON __month_names[12];
/****************************************************************************/
extern char * __asctime_r(const struct tm *tm,char * buffer,size_t buffer_size);
extern char * __number_to_string(unsigned int number,char * string,size_t max_len,size_t min_len);
extern struct tm * __convert_time(ULONG seconds, LONG gmt_offset, struct tm * tm);