improve readability of string: fix indentation and remove trailing spaces
Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
This commit is contained in:
@@ -36,5 +36,5 @@
|
|||||||
int
|
int
|
||||||
strcoll(const char *s1, const char *s2)
|
strcoll(const char *s1, const char *s2)
|
||||||
{
|
{
|
||||||
return strcmp (s1, s2);
|
return strcmp(s1, s2);
|
||||||
}
|
}
|
||||||
|
@@ -38,7 +38,6 @@
|
|||||||
int
|
int
|
||||||
strncmp(const char *s1, const char *s2, size_t n)
|
strncmp(const char *s1, const char *s2, size_t n)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (n == 0)
|
if (n == 0)
|
||||||
return (0);
|
return (0);
|
||||||
do {
|
do {
|
||||||
|
Reference in New Issue
Block a user