aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* chore(readme): 2020 announcementHEADmasterMarco Paland2020-01-011-0/+6
|
* Fixed the comment about the return value for snprintf and vsnprintf (issue #45)Vedran Grudenic2019-04-051-2/+3
|
* chore(readme): fixed spaceMarco Paland2019-03-261-0/+1
|
* test(test_suite): added support for PRINTF_DISABLE_SUPPORT_EXPONENTIALMarco Paland2019-03-261-10/+36
|
* chore(printf): minor cleanupMarco Paland2019-03-262-10/+16
|
* test(test_suite): added more float test casesMarco Paland2019-03-261-0/+23
|
* chore(readme): update readme to exp supportMarco Paland2019-03-261-10/+10
|
* chore(catch): update to catch2 2.7.0Marco Paland2019-03-261-471/+1330
|
* chore(readme): added the Hatchling platform as using projectMarco Paland2019-03-261-1/+1
|
* feat(printf): added vprintf() supportMarco Paland2019-03-253-1/+37
| | | Closes #43
* chore(printf, test_suite): clean upMarco Paland2019-03-242-76/+89
|
* Merge exponential supportMarco Paland2019-02-183-59/+252
|\
| * Implemented custom log10/pow in _etoa to eliminate dependency on <math.h> ↵Martijn Jasperse2019-02-031-13/+36
| | | | | | | | for %E format
| * Fixed whitespace, added %e/%g to README.mdMartijn Jasperse2019-02-012-41/+44
| |
| * Added special-case handling to %E, added +inf and -inf handling, test casesMartijn Jasperse2019-02-012-6/+23
| |
| * Fix for left-justified %E formattingMartijn Jasperse2019-02-012-7/+78
| | | | | | | | Adding %E/%G test cases to suite
| * Factoring output padding code to ensure "nan" gets padded correctlyMartijn Jasperse2019-02-011-48/+28
| |
| * Implementing %E and %G formatting specificationsMartijn Jasperse2019-02-011-12/+111
| |
* | fix(printf): remove float comparisonMarco Paland2019-01-312-5/+13
| | | | | | Add more float test cases
* | test(test_suite): add more #-flag test casesMarco Paland2019-01-311-1/+5
| |
* | chore(printf): make pointer var constMarco Paland2019-01-311-4/+3
|/
* fix(printf): fixed support of NaNMarco Paland2019-01-263-3/+17
| | | (hot) fixes #37
* Merge pull request #32 from embeddedartistry/masterMarco Paland2019-01-261-1/+1
|\ | | | | Address warnings in printf.c
| * Add cast to uintptr to silent the const-cast warningPhillip Johnston2019-01-161-1/+1
| |
* | patch for issue #40 (Digit missing from negative numbers in certain cases)Vedran Grudenic2019-01-262-8/+74
|/
* fix(printf): fctprintf() must not append null terminatorMarco Paland2019-01-162-3/+6
| | | Fixes #39, references #19
* fix(readme): fixed compiler switch commentMarco Paland2018-12-291-3/+3
|
* chore(readme): updated readmeMarco Paland2018-12-281-2/+4
|
* chore(printf): cleanup secure strlen() function, added test casesMarco Paland2018-12-053-6/+31
|
* fixing last fixcz7asm2018-12-051-1/+1
| | | missing function argument
* added length limit for _strlencz7asm2018-12-051-2/+4
| | | I wanted the limit specifier for strings (e.g. "%16.s") to be usable in situations when zero termination isn't guaranteed. As a simple fix I added lenght limitation to _strlen.
* Merge remote-tracking branch 'origin/master'Marco Paland2018-11-152-8/+12
|\
| * chore(readme): update readmeMarco Paland2018-11-041-1/+1
| |
| * perf(printf): check flags outside while loopMarco Paland2018-11-041-7/+11
| |
* | chore(readme): updated readmeMarco Paland2018-11-151-3/+1
| |
* | change(printf): removed PRINTF_OVERRIDE_LIBC optionMarco Paland2018-11-152-54/+18
|/ | | Removed the PRINTF_OVERRIDE_LIBC option. Basically this it not necessary and the ptintf() macro define can be used all the time.
* fix(readme): updated compiler switchesMarco Paland2018-11-021-7/+7
|
* chore(catch): update to catch2 2.4.2Marco Paland2018-11-021-334/+389
|
* feat(printf): added PRINTF_OVERRIDE_LIBC supportMarco Paland2018-11-023-2/+46
| | | Fixes #16
* refactor(printf): move "printf_config.h" include to headerMarco Paland2018-11-022-10/+12
| | | | Necessary because PRINTF_OVERRIDE_LIBC is needed in header Closes #4
* Merge pull request #34 from farrrb/inject-config-fileMarco Paland2018-11-021-17/+35
|\ | | | | Added the possibility to inject a config file.
| * Added the possibility to inject a config file.Fabian Zahn2018-10-141-17/+35
| |
* | Merge pull request #33 from farrrb/fixed-spellingMarco Paland2018-10-141-30/+30
|\ \ | |/ |/| chore(readme): fixed spelling and corrected capital letters in titles
| * Fixed spelling and corrected capital letters in titles ↵Fabian Zahn2018-10-141-30/+30
|/ | | | (https://grammarsherpa.wordpress.com/2011/08/13/capital-letters-in-titles-headline-styling/).
* chore(printf): remove unused flagMarco Paland2018-09-301-1/+0
| | | Credit goes to @phillipjohnston
* chore(catch): update to catch2 2.4.1Marco Paland2018-09-301-467/+1437
|
* chore(printf): small improvmentsMarco Paland2018-09-241-3/+3
|
* chore(readme): updated readmeMarco Paland2018-09-241-1/+2
|
* feat(printf): add # flag support for %b specifierMarco Paland2018-09-242-1/+7
| | | Closes #29
* fix(printf): fix hash precisionMarco Paland2018-09-241-1/+1
| | | Fixes #31