src/cx/string.h

changeset 1692
56731bb98508
parent 1680
1aa21afb8763
--- a/src/cx/string.h	Wed Dec 31 14:58:52 2025 +0100
+++ b/src/cx/string.h	Wed Dec 31 15:11:12 2025 +0100
@@ -569,11 +569,24 @@
 CX_EXTERN CX_NODISCARD
 cxstring cx_strsubs_(cxstring string, size_t start);
 
+/**
+ * Internal conversion function - do not use.
+ * @param string
+ * @param start
+ * @return
+ */
 CX_INLINE
 cxmutstr cx_strsubs_m_(cxmutstr string, size_t start) {
     return cx_mutstrcast(cx_strsubs_(cx_strcast(string), start));
 }
 
+/**
+ * Internal conversion function - do not use.
+ * @param string
+ * @param start
+ * @param length
+ * @return
+ */
 CX_INLINE
 cxmutstr cx_strsubsl_m_(cxmutstr string, size_t start, size_t length) {
     return cx_mutstrcast(cx_strsubsl_(cx_strcast(string), start, length));

mercurial