/usr/include/jalali/jtime.h is in libjalali-dev 0.4.1-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | /*
* jtime.h - Tools for manipulating Jalali representation of Iranian calendar
* and necessary conversations to Gregorian calendar.
* Copyright (C) 2006, 2007, 2009, 2010, 2011 Ashkan Ghassemi.
*
* This file is part of libjalali.
*
* libjalali is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* libjalali is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with libjalali. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef JTIME_H
#define JTIME_H
#ifdef __cplusplus
extern "C" {
#if 0 /* /me mutters something about emacs. */
}
#endif
#endif
#define MAX_BUF_SIZE 2048
extern char* jasctime(const struct jtm* jtm);
extern char* jctime(const time_t* timep);
extern struct jtm* jgmtime(const time_t* timep);
extern struct jtm* jlocaltime(const time_t* timep);
extern time_t jmktime(const struct jtm* jtm);
extern size_t jstrftime(char* s, size_t max, const char* format,
const struct jtm* jtm);
extern char* jstrptime(const char* s, const char* format, struct jtm* jtm);
extern char* jasctime_r(const struct jtm* jtm, char* buf);
extern char* jctime_r(const time_t* timep, char* buf);
extern struct jtm* jgmtime_r(const time_t* timep, struct jtm* result);
extern struct jtm* jlocaltime_r(const time_t* timep, struct jtm* result);
extern int jalali_to_farsi(char* buf, size_t n, int padding, char* pad, int d);
#ifdef __cplusplus
}
#endif
#endif /* JTIME_H */
|