File: strftime.h

package info (click to toggle)
catdoc 0.94.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 2,996 kB
  • ctags: 540
  • sloc: ansic: 3,747; sh: 350; tcl: 262; makefile: 193
file content (9 lines) | stat: -rw-r--r-- 165 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
#ifndef STRFTIME_H
#define STRFTIME_H
#include <stdlib.h>
#include <time.h>

size_t strftime(char *s,size_t max, const char *format,
		const struct tm *tm);

#endif