summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-01-02More bugs in format...Dominick Allen
2025-01-02Fixing errors in Vector.Dominick Allen
2025-01-02Fix warnings from clang-tidy in fud_format.hppDominick Allen
2025-01-02Clang tidy fixes.Dominick Allen
2025-01-02Get basic CSV parser operating.Dominick Allen
2025-01-01Add CSV parsing, printing, fix buffered file reading.Dominick Allen
2024-11-10Buffered file IO.Dominick Allen
2024-11-03Rename FudUtf8 to Utf8.Dominick Allen
2024-11-03Correct String::grow.Dominick Allen
2024-11-03Factor out growth of String and make it scale by 1.5x.Dominick Allen
2024-11-02Allocator deallocate is void rather than returning FudStatus.Dominick Allen
2024-10-30Use std::byte* instead of void* for allocators.Dominick Allen
2024-10-29u8 string literalsDominick Allen
2024-10-29Reworking of Result.Dominick Allen
2024-10-29Reduce string size, adopt clang-style SSO.Dominick Allen
2024-10-29Back out of modified SSO.Dominick Allen
2024-10-28Prepare for new SSO.Dominick Allen
2024-10-27Excise std::optional.Dominick Allen
2024-10-27Update warnings.Dominick Allen
2024-10-27Setup float formatting.Dominick Allen
2024-10-27First crack at file objects.Dominick Allen
2024-10-25Correct CMakeLists.txt.Dominick Allen
2024-10-25A lot of work on formatting.Dominick Allen
2024-10-25Get working string formatting for unsigned numbers.Dominick Allen
2024-10-24As always, formatting is a pain.Dominick Allen
2024-10-23String conversion and parsing format spec.Dominick Allen
2024-10-21Add vector and option.Dominick Allen
2024-10-20Lots of work.Dominick Allen
2024-10-18Add temporary work for formatting.Dominick Allen
2024-10-17Rename InvalidInput to ArgumentInvalid.Dominick Allen
2024-10-16Finish rounding out allocator logic in fud_string.Dominick Allen
2024-10-16First crack at allocators.Dominick Allen
2024-10-15Conver to using static constructors for string, sqlite, files.Dominick Allen
2024-10-15Style fixes for clang tidy.Dominick Allen
2024-10-15Change asssertions to abort.Dominick Allen
2024-10-09Use const references and constexpr as applicable.Dominick Allen
2024-10-05Formatting changes. Refactoring out detail::CopyMove from Result.Dominick Allen
2024-10-03Use a configure file for versioning including git revision.Dominick Allen
2024-10-03Cleanup from clang-tidy.Dominick Allen
2024-10-02Define fud to return version info.Dominick Allen
2024-10-02Set version of fud lib to 0.42.0. Not stable yet.Dominick Allen
2024-10-02Add setup for coverage and cppcheck.Dominick Allen
2024-10-02Reformatting and minor documentation.Dominick Allen
2024-10-02Add fud function.Dominick Allen
2024-10-02Fix bug that allowed any pointer to be used as a writing or reading type.Dominick Allen
2024-10-02Fix error in string reserve.Dominick Allen
2024-10-02Separate string view, implement string appending semantics.Dominick Allen
2024-10-02Add method to write data where size = length.Dominick Allen
2024-10-02Add permissions model for files.Dominick Allen
2024-10-01Fix move assignment operators or delete them to prevent leaks.Dominick Allen