File: timezone.h

package info (click to toggle)
python-ciso8601 2.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 364 kB
  • sloc: python: 1,253; ansic: 936; sh: 22; makefile: 7
file content (12 lines) | stat: -rw-r--r-- 164 bytes parent folder | download | duplicates (2)
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