fmtstrn.c 167 B

123456789
  1. #include <format.h>
  2. #include <string.h>
  3. #include <util.h>
  4. char* fmtstrn(char* p, char* e, const char* src, int len)
  5. {
  6. return fmtraw(p, e, src, strnlen(src, len));
  7. }