summaryrefslogtreecommitdiff
path: root/AK/PrintfImplementation.h
AgeCommit message (Expand)Author
2020-02-19AK: Fix bug where "%s" with field width would print too many charactersAndreas Kling
2020-02-19AK: Support "%.*s" in format stringsAndreas Kling
2020-02-09AK: Apply changes for the Bootstrapper environmentLiav A
2020-02-08AK: Make PrintfImplementation treat %lld as 64-bitAndreas Kling
2020-01-19AK: Support '+' qualifier in printf() to force sign for positive %d'sAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2019-12-05AK: Implement %n printf specifierSergey Bugaev
2019-11-04AK: Let's just log unimplemented printf() format stringsAndreas Kling
2019-11-02AK: Handle '%llu' in printf() (unsigned 64-bit integer)Andreas Kling
2019-09-11printf: %w, %b, and %p should be zero-padded but not left-paddedAndreas Kling
2019-09-08AK: Pad %b and %w to two and four places in printfConrad Pankoff
2019-09-06AK: When printf assert on unsupported specifier, specify which one!Andreas Kling
2019-09-03AK: Fix printf %x padding and %p lengthConrad Pankoff
2019-09-02AK: Abort on unknown printf formatting charactersConrad Pankoff
2019-09-02AK: Support %i as an alias for %d in printfConrad Pankoff
2019-08-28AK: Make printf %x actually work properlyConrad Pankoff
2019-08-18AK: The printf family was mixing up case and alternate form settingsAndreas Kling
2019-08-13AK: Support width/alt/caps/padding modifiers for %x in printfConrad Pankoff
2019-08-10printf: Support dynamic fill widthsSergey Bugaev
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-06-22printf: Support %zu (the 'z' is really just ignored.)Andreas Kling
2019-06-22printf: Oops, '-' is the left padding modifier, not ' '.Andreas Kling
2019-06-18printf: Support printing negative values with %f or %g.Andreas Kling
2019-06-18printf: Treat %g as %f for now.Andreas Kling
2019-06-14AK: Massage it into building on my host system without breaking Serenity.Andreas Kling
2019-06-07AK: Rename printf.cpp to PrintfImplementation.h.Andreas Kling