Fix docblock in strcpy_lstrip

This commit is contained in:
Nick Krichevsky 2018-09-08 22:51:21 -04:00
parent 176b9f66c8
commit b216dcf3b8

View file

@ -9,6 +9,8 @@
* *
* @param dest Buffer to copy to * @param dest Buffer to copy to
* @param src Buffer to copy from * @param src Buffer to copy from
*
* @return The destination buffer
*/ */
static char *strcpy_lstrip(char *dest, const char *src) { static char *strcpy_lstrip(char *dest, const char *src) {
char *dest_cursor; char *dest_cursor;