From 9a66ebdf0b54c609462dc5cbe53e94b1a9547b2c Mon Sep 17 00:00:00 2001 From: Neil Williams Date: Sun, 5 Feb 2006 10:57:28 +0000 Subject: [PATCH] line-wrapping tweak git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13114 57a11ea4-9604-0410-9ed3-97b8803252fd --- lib/libqof/qof/gnc-engine-util.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/libqof/qof/gnc-engine-util.h b/lib/libqof/qof/gnc-engine-util.h index 8ba9cd12dd..6ab250d90f 100644 --- a/lib/libqof/qof/gnc-engine-util.h +++ b/lib/libqof/qof/gnc-engine-util.h @@ -226,7 +226,8 @@ int null_strcmp (const char * da, const char * db); /** Search for str2 in first nchar chars of str1, ignore case. Return * pointer to first match, or null. These are just like that strnstr * and the strstr functions, except that they ignore the case. */ -extern char *strncasestr(const unsigned char *str1, const unsigned char *str2, size_t len); +extern char *strncasestr(const unsigned char *str1, const unsigned char *str2, + size_t len); extern char *strcasestr(const char *str1, const char *str2); /** The ultostr() subroutine is the inverse of strtoul(). It accepts a @@ -308,13 +309,13 @@ gpointer gnc_string_cache_insert(gconstpointer key); #define CACHE_INSERT(str) gnc_string_cache_insert((gconstpointer)(str)) #define CACHE_REMOVE(str) gnc_string_cache_remove((str)) -/* Replace cached string currently in 'dst' with string in 'src'. - * Typical usage: +/* Replace cached string currently in 'dst' with string in 'src'. + * Typical usage: * void foo_set_name(Foo *f, const char *str) { * CACHE_REPLACE(f->name, str); * } - * It avoids unnecessary ejection by doing INSERT before REMOVE. -*/ + * It avoids unnecessary ejection by doing INSERT before REMOVE. +*/ #define CACHE_REPLACE(dst, src) do { \ gpointer tmp = CACHE_INSERT((src)); \ CACHE_REMOVE((dst)); \