aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
* chore(readme): update readmeMarco Paland2018-09-141-2/+2
|
* fix(printf): ignore 0 flag for integers if precision is specifiedMarco Paland2018-09-142-0/+11
| | | Fixes #27
* fix(printf): zero precision and zero value hash problemMarco Paland2018-09-142-3/+27
| | | Fixes #26
* fix(printf): fix negative argument precisionMarco Paland2018-09-142-1/+5
| | | Fixes #25
* fix(printf): fix broken right-padding in _ftoaMarco Paland2018-09-142-1/+9
| | | Fixes #24
* fix(printf): fix trailing field width in itoa conversionMarco Paland2018-08-212-1/+15
| | | Fixes #21
* fix(printf): fix floating point precision limitMarco Paland2018-08-213-9/+29
| | | Return the correct count of precision digits now. Fixes #22
* chore(readme): update readmeMarco Paland2018-08-021-1/+16
|
* fix(printf): change char* to void* pointer to avoid cast-align troubleMarco Paland2018-08-011-6/+6
| | | Closes #17 again
* fix(test_suite): fix vsnprint() mockingMarco Paland2018-06-241-11/+20
| | | Using a structure as va_arg stack mock is too architecture dependent, using a regular va_list now instead.
* fix(printf): suppress terminating \0 in printf() outputMarco Paland2018-06-242-2/+5
| | | Closes #19
* fix(printf): fix 'expression is constant' warningMarco Paland2018-06-151-1/+2
|
* fix(test_suite): fix vsnprintf va_arg mock test case for x64Marco Paland2018-06-151-3/+3
|
* test(test_suite): added vsnprintf() test caseMarco Paland2018-06-051-0/+18
|
* chore(printf): update commentsMarco Paland2018-06-051-2/+2
|
* fix(printf): fix argument name in output function wrapperMarco Paland2018-06-051-1/+1
|
* test(test_suite): modified fctprintf() test caseMarco Paland2018-06-054-9/+16
| | | Renamed 'user' to 'arg'
* Merge pull request #18 from sgoll/fctprintf-user-dataMarco Paland2018-06-053-10/+14
|\ | | | | feat(printf): add user pointer to fctprintf()
| * feat(printf): add user pointer to fctprintf()Sebastian Goll2018-06-023-10/+14
|/ | | | Arbitrary user data can be passed to output function
* refactor(printf): changed oprintf() to fctprintf()Marco Paland2018-05-184-6/+6
| | | fctprintf() is more descriptive for its operation
* refactor(printf): use output function wrapping structMarco Paland2018-05-161-2/+8
|
* feat(printf): added new oprintf() functionMarco Paland2018-05-154-4/+41
| | | Write formatted output directly to given output function
* fix(printf): pass dummy buffer for printf to _vsnprintf instead of NULLMarco Paland2018-05-132-7/+23
| | | Fixes #15
* test(test_suite): added more `float` test casesMarco Paland2018-05-122-1/+28
|
* fix(printf): use C conform `NULL` instead of C++ `nullptr`Marco Paland2018-05-122-5/+6
| | | Fixes #14
* fix(printf,test_suite): fix compiler warningsMarco Paland2018-05-112-6/+6
|
* feat(printf): added support for %h, %hh, %j and %t length modifiersMarco Paland2018-05-113-52/+106
| | | | | - Renamed compiler switches - Minor cleanup Closes #12
* Merge branch 'out_function'Marco Paland2018-05-113-96/+112
|\
| * fix(printf): use null output function for nullptr bufferMarco Paland2018-05-081-1/+13
| | | | | | Improving #11
| * refactor(printf): usage of (buffer) output routine, fixes return valueMarco Paland2018-05-083-99/+103
|/ | | | | Buffer for printf is no longer needed, chars are directly written now. Return value is specification conform now. Fixes #11
* fix(printf): move <stddef.h> to headerMarco Paland2018-05-062-1/+1
| | | Fixes #13
* chore(readme): updated readmeMarco Paland2018-04-201-2/+2
|
* fix(printf): fixed floating point sign handlingMarco Paland2018-04-202-4/+22
|
* chore(travis): removed coveralls supportMarco Paland2018-04-202-7/+0
|
* chore(codecov): added codecov configMarco Paland2018-04-201-0/+2
|
* chore(travis): support for codecov.ioMarco Paland2018-04-202-0/+5
|
* chore(readme): updated readmeMarco Paland2018-04-201-31/+45
|
* fix(test_suite): fixed test casesMarco Paland2018-04-201-5/+5
|
* chore(printf): update commentsMarco Paland2018-04-201-3/+3
|
* feat(printf): add vsnprintf functionMarco Paland2018-04-202-19/+30
| | | fixes #5
* docs(printf): update docs and usageMarco Paland2018-04-191-7/+7
|
* refactor(printf): improved _strlen() functionMarco Paland2018-04-191-7/+6
|
* Merge branch 'snprintf_fix'Marco Paland2018-04-192-39/+107
|\