view CODING @ 546:f852eb277913

Explode exif_get_formatted_by_key() in smaller functions prefixed "exif_build_f". An helper macro was added to call them.
author zas_
date Fri, 02 May 2008 21:34:26 +0000
parents 86f4c42afeab
children f31ae0d9e163
line wrap: on
line source

Please keep the general coding style of Geeqie:

Space after if, while and for:

while (...)
for (...)
if (...)

Indentation of {}:

while (...)
	{
	...
	}

if (...)
	{
	...
	}
else
	{
	...
	}

Spaces around operators:

i = 2;

Space after comma:
func(a, b, c);

Use glib functions when possible (ie. g_ascii_isspace() instead of isspace()).
Please use glib types when possible (ie. gint and gchar instead of int and char)
.

Check twice the indentation and spurious whitespaces.

Try to use explicit variable and function names