File: timezone.h

package info (click to toggle)
python-ciso8601 2.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: python: 1,294; ansic: 939; sh: 22; makefile: 7
file content (12 lines) | stat: -rw-r--r-- 164 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef CISO_TZINFO_H
#define CISO_TZINFO_H

#include <Python.h>

PyObject *
new_fixed_offset(int offset);

int
initialize_timezone_code(PyObject *module);

#endif