Fix indentation for strlcpy() - smdev - suckless mdev | |
git clone git://git.suckless.org/smdev | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 9f581446fd2c776f23adad603102a5363ff0c5a6 | |
parent 8c09bbb4f22f1a3616eb7518fc17b726bd422372 | |
Author: sin <[email protected]> | |
Date: Tue, 27 Aug 2013 09:59:49 +0100 | |
Fix indentation for strlcpy() | |
Diffstat: | |
M util/strlcpy.c | 3 ++- | |
1 file changed, 2 insertions(+), 1 deletion(-) | |
--- | |
diff --git a/util/strlcpy.c b/util/strlcpy.c | |
@@ -1,7 +1,8 @@ | |
#include <stdio.h> | |
#include <string.h> | |
-size_t strlcpy(char *dest, const char *src, size_t size) | |
+size_t | |
+strlcpy(char *dest, const char *src, size_t size) | |
{ | |
size_t ret = strlen(src); | |