File: system.h

package info (click to toggle)
libisds 0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,348 kB
  • ctags: 1,659
  • sloc: ansic: 24,898; sh: 11,772; makefile: 393; xml: 375; sed: 16
file content (13 lines) | stat: -rw-r--r-- 215 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __ISDS_SYSTEM_H__
#define __ISDS_SYSTEM_H__

#include "http.h"

#ifdef _WIN32
#include "win32.h"
#else
#include "unix.h"
#endif

http_error _server_datestring2tm(const char *string, struct tm *time);
#endif