File: strftime.h

package info (click to toggle)
catdoc 0.93.4-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,048 kB
  • ctags: 471
  • sloc: ansic: 3,177; sh: 350; tcl: 262; makefile: 182
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