summaryrefslogtreecommitdiff
path: root/firmware/include/utility.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/utility.h')
-rw-r--r--firmware/include/utility.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/include/utility.h b/firmware/include/utility.h
index ead2351e..8fe82772 100644
--- a/firmware/include/utility.h
+++ b/firmware/include/utility.h
@@ -118,7 +118,7 @@ uint32_t Uint64ToString(char *buf, uint32_t bufsize, uint64_t value,
* null-terminated if <destlen> > 0. Returns the number of characters used in
* <dest>, not counting the terminating null.
*/
-uint32_t Strncat(char *dest, const char *src, uint32_t destlen);
+uint32_t StrnAppend(char *dest, const char *src, uint32_t destlen);
/* Ensure that only our stub implementations are used, not standard C */
#ifndef _STUB_IMPLEMENTATION_