https://github.com/vanng822/date_util
functionalities for date and date interval
https://github.com/vanng822/date_util
Last synced: 2 months ago
JSON representation
functionalities for date and date interval
- Host: GitHub
- URL: https://github.com/vanng822/date_util
- Owner: vanng822
- Created: 2013-05-09T07:14:47.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-05-12T11:22:55.000Z (about 13 years ago)
- Last Synced: 2025-03-11T16:49:46.167Z (over 1 year ago)
- Language: C
- Size: 164 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
date_util
=========
functionalities for date and date interval
[](http://travis-ci.org/vanng822/date_util)
## install
### virtualenv
http://www.virtualenv.org/en/latest/
### cunit, mac or ubuntu
sudo port install cunit
sudo apt-get install libcunit1 libcunit1-dev
### virtualenv python2.7
virtualenv --python=/usr/bin/python2.7 python2.7
source python2.7/bin/activate
## run test
### python test
python setup.py test
### c test
make test
## Memory leak check with valgrind
valgrind --leak-check=full make test
valgrind --leak-check=full python setup.py test
## Resources
### CUnit doc
* http://cunit.sourceforge.net/
### Python c-api
* http://docs.python.org/2/c-api/index.html
### C
* http://www.gnu.org/software/gnu-c-manual/gnu-c-manual.html
* http://www.acm.uiuc.edu/webmonkeys/book/c_guide/
* http://www.cplusplus.com/reference/
* http://www.crasseux.com/books/ctutorial/
* http://gcc.gnu.org/