Moved self doc to other file to use normal functions.
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 5s

This commit is contained in:
Willem Cazander 2024-07-18 13:25:50 +02:00
parent 669c687b8b
commit 35577362c2
5 changed files with 75 additions and 101 deletions

View file

@ -3,23 +3,19 @@ define mb-make-space-newline
$(MB_   )
$(MB_   )
endef
$(call mb-make-call,mb-doc-function-deep,mb-make-space-newline,Prints a newline character.)
define mb-make-space-tab
$(MB_   ) $(MB_ )
endef
$(call mb-make-call,mb-doc-function-deep,mb-make-space-tab,Prints a tab character.)
define mb-make-space-white
$(MB_   )$(subst ,, )
endef
$(call mb-make-call,mb-doc-function-deep,mb-make-space-white,Prints a white space character.)
define mb-make-space-white-to-comma
$(MB_   )$(subst $(call mb-make-call,mb-make-space-white),$(MB_MAKE_COMMA),$1)
endef
$(call mb-make-call,mb-doc-function-deep,mb-make-space-white-to-comma,Replaces all spaces with comma's.,<input>)