Skip to content

A tiny and powerful library for converting calendar date units. (gregorian, jalali)

License

Notifications You must be signed in to change notification settings

BaseMax/ConvertCalendar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Convert Calendar

A tiny and powerful library for converting calendar date units. (gregorian, jalali)

Using

date result = gregorian2jalali(input);
date result = jalali2gregorian(input);

Functions

date gregorian2jalali(date input);
date jalali2gregorian(date input);

Example I/O

Input: 2019, 03, 31
Output: 1398, 1, 11
Input: 1398, 1, 13
Output: 2019, 04, 02

Compile Example

$ git clone https://github.com/BaseMax/ConvertCalendar
$ cd ConvertCalendar/
$ cd example/
$ gcc main.c ../source/ConvertCalendar.c -o main
$ ./main

License

ConvertCalendar is licensed under the GNU General Public License.