From 7e0f021a9aec35fd8e6725e87e3313b101d26f5e Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sun, 27 Jan 2008 11:37:44 +0100 Subject: Initial import (2.0.2-6) --- reference/C/FUNCTIONS/time.html | 86 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 reference/C/FUNCTIONS/time.html (limited to 'reference/C/FUNCTIONS/time.html') diff --git a/reference/C/FUNCTIONS/time.html b/reference/C/FUNCTIONS/time.html new file mode 100644 index 0000000..82d00f3 --- /dev/null +++ b/reference/C/FUNCTIONS/time.html @@ -0,0 +1,86 @@ +time and date related functions + + + + + + +
+
+

time and date related functions.

+
+
+

+The following information gives a taste of the date and time related functions. +It stikes me that this is overly complicated, but what do I know... +To review all the functions available in the standard library, +click here. +

+

+ + + + +
+
+
+  Library:   time.h
+
+  Prototype: char *asctime( const struct tm *time);
+             char *ctime(const time_t *timer);
+             struct tm *localtime(const time_t *timer);
+             size_t strftime(char *s, 
+          		     size_t maxsize, 
+		   	     const *format,
+	   		     const struct tm *time);
+
+  Syntax:    
+
+
+
+
+

+The prototype list does NOT list all the functions that are +described in time.h - only the ones I have used and shown in the +example that follows.

+ + +Example program. +

+ +Here is a time related problem. +

+


+

See also:

+ + + + +

+ +


+

+

+ + + + +
+ Top + + Master Index + + Keywords + + Functions +
+
+

+


+
Martin Leslie +

+ + -- cgit v1.2.3-54-g00ecf