File: wisetime.h

package info (click to toggle)
wise 2.4.1-21
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 27,140 kB
  • sloc: ansic: 276,365; makefile: 1,003; perl: 886; lex: 93; yacc: 81; sh: 24
file content (57 lines) | stat: -rw-r--r-- 1,248 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef DYNAMITEwisetimeHEADERFILE
#define DYNAMITEwisetimeHEADERFILE
#ifdef _cplusplus
extern "C" {
#endif
#include "wisebase.h"
#include <time.h>


    /***************************************************/
    /* Callable functions                              */
    /* These are the functions you are expected to use */
    /***************************************************/



/* Function:  now_string(void)
 *
 * Descrip:    returns a buffer
 *             of the current date and time
 *
 *
 *
 * Return [UNKN ]  Undocumented return value [char *]
 *
 */
char * Wise2_now_string(void);
#define now_string Wise2_now_string


/* Function:  time_stamp(ofp)
 *
 * Descrip:    puts now_string into file, with
 *             no newline
 *
 *
 * Arg:        ofp [UNKN ] Undocumented argument [FILE *]
 *
 */
void Wise2_time_stamp(FILE * ofp);
#define time_stamp Wise2_time_stamp


  /* Unplaced functions */
  /* There has been no indication of the use of these functions */


    /***************************************************/
    /* Internal functions                              */
    /* you are not expected to have to call these      */
    /***************************************************/

#ifdef _cplusplus
}
#endif

#endif