From: Florian Forster Date: Tue, 6 Jul 2010 07:28:27 +0000 (+0200) Subject: src/common.c: Add missing folding markers. X-Git-Tag: v4.0.0~153 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=366c100ebb89651eef6b71139bd92b2c27b63738;p=collection4.git src/common.c: Add missing folding markers. --- diff --git a/src/common.c b/src/common.c index 3cd40d5..23714ea 100644 --- a/src/common.c +++ b/src/common.c @@ -182,7 +182,7 @@ static uint32_t rgb_to_uint32 (double *rgb) /* {{{ */ | ((uint32_t) b)); } /* }}} uint32_t rgb_to_uint32 */ -static int uint32_to_rgb (uint32_t color, double *rgb) +static int uint32_to_rgb (uint32_t color, double *rgb) /* {{{ */ { uint8_t r; uint8_t g; @@ -256,12 +256,12 @@ char *strtolower (char *str) /* {{{ */ return (str); } /* }}} char *strtolower */ -char *strtolower_copy (const char *str) +char *strtolower_copy (const char *str) /* {{{ */ { if (str == NULL) return (NULL); return (strtolower (strdup (str))); -} +} /* }}} char *strtolower_copy */ /* vim: set sw=2 sts=2 et fdm=marker : */