summaryrefslogtreecommitdiff
path: root/libmisc
AgeCommit message (Collapse)Author
4 dayslibmisc: fmt.h: Have `ptr` be more accepting of pointer typesLuke T. Shumaker
7 daysLighten assert()'s stack-useLuke T. Shumaker
11 dayslibmisc: error.h: Add ok_or_errorLuke T. Shumaker
11 dayslibmisc: error.h: Allow a 2-arg form of DECLARE_ERROR_{OR,AND}Luke T. Shumaker
11 dayslibmisc: map.h: Touch upLuke T. Shumaker
11 dayslibmisc: alloc.h: Assert that we succeedLuke T. Shumaker
11 dayslibmisc: alloc.h: Let heap_cleanup() be used on typed pointersLuke T. Shumaker
12 dayslibmisc: fmt: `const` pointer fixesLuke T. Shumaker
12 daysfixup! libmisc: static_assert: Disable -Wtype-limitsLuke T. Shumaker
14 dayslibmisc: static_assert: Disable -Wtype-limitsLuke T. Shumaker
14 dayslib9p: tests: Don't bother compiling deps for the compile testsLuke T. Shumaker
2025-06-12libmisc: error.h: Add error_dup()Luke T. Shumaker
2025-06-12lib9p_srv: Clean up the handle_Tread() implementationLuke T. Shumaker
2025-06-10libmisc: obj.h: Rework the LO_INTERFACE_* API to expose method funcsLuke T. Shumaker
2025-06-09libmisc: test_obj_nest: Don't use ssize_tLuke T. Shumaker
I like to grep for `ssize` because I have decided that using ssize_t is an anti-pattern, and this was an annoying false-positive.
2025-06-09libmisc: assert.h: Disable -Wtype-limits inside of assert()Luke T. Shumaker
2025-06-08Merge remote-tracking branch 'origin/main' into lukeshu/fix-obj-boxLuke T. Shumaker
2025-06-08libmisc: obj.h: Use LM_DEFAPPEND() to implement magic LO_BOX()Luke T. Shumaker
2025-06-08libmisc: obj.h: Fuss with whitespaceLuke T. Shumaker
2025-06-08libmisc: obj.h: Use LM_DEFAPPEND() to have lo_box_*_as_*() be macrosLuke T. Shumaker
2025-06-08libmisc: obj.h: Fix boxing from one interface to anotherLuke T. Shumaker
2025-06-06libmisc: Add error.hLuke T. Shumaker
2025-06-06Prune #includesLuke T. Shumaker
2025-06-02libmisc: obj.h: Use LM_DEFAPPEND() to implement magic LO_BOX()Luke T. Shumaker
2025-06-02libmisc: macro.h, wrap-cc: Implement LM_DEFAPPENDLuke T. Shumaker
2025-06-01Add a (for-now noop) wrapper around cppLuke T. Shumaker
2025-06-01no-integrated-cppLuke T. Shumaker
2025-05-31libmisc: obj.h: Use LM_FORCE_SEMICOLONLuke T. Shumaker
2025-05-31libmisc: macro.h: Clearer section divider commentsLuke T. Shumaker
2025-05-30libmisc: fmt.h: Add fmt_print2() and fmt_asprint()Luke T. Shumaker
2025-05-28Get test coverage of fmt.c and utf8.c up; fix found bugsLuke T. Shumaker
2025-05-27libmisc: fmt: Add hbyte and hmemLuke T. Shumaker
2025-05-26No more (static inline) function bodies in headersLuke T. Shumaker
2025-05-17Tidy some whitespaceLuke T. Shumaker
2025-05-17Fix some funny indentsLuke T. Shumaker
2025-05-17Sort+align #includesLuke T. Shumaker
2025-05-17Pull UTF-8 decoding into libmisc/utf8.cLuke T. Shumaker
2025-05-15Begone with the printf variants of the log functionsLuke T. Shumaker
2025-05-15libmisc: Remove uses of printfLuke T. Shumaker
2025-05-15libmisc: log.h: Add support for libmisc/fmt.h printingLuke T. Shumaker
2025-05-15libmisc: Invent fmt.h to replace printfLuke T. Shumaker
2025-05-15libmisc: _intercept.h: Have __lm_printf return size_t instead of intLuke T. Shumaker
2025-05-15libmisc: macro.h: Add LM_FOREACH_PARAMLuke T. Shumaker
2025-05-15libmisc: macro.h: Tidy and test LM_FOREACH_TUPLELuke T. Shumaker
2025-05-12More GCC 15 fixesLuke T. Shumaker
2025-05-12libmisc: macro.h: Add LM_PARTIAL_SWITCH, use itLuke T. Shumaker
2025-05-06Merge libobj into libmiscLuke T. Shumaker
2025-05-06Drop -fplan9-extensionsLuke T. Shumaker
2025-05-06Use static_assert to force semicolons, instead of empty structsLuke T. Shumaker
2025-05-06Use C23Luke T. Shumaker
This gives us: - [[maybe_unused]] instead of [[gnu::unused]] - bool/true/false are predefined, so no need for <stdbool.h>