Code

Use glib's functions (g_strlcat, g_strlcpy, g_snprintf, g_strdup_vprintf)
[ncmpc.git] / TODO
2 Features:
3 * remote playlists 
4 * search screen
5 * id3 browser
7 Glib
8 * replace snprintf with g_snprintf or g_strdup_printf 
9 * replace strcat with g_strlcat or g_strconcat()
10 * replace strncpy with g_strlcpy 
11 * replace strstr with g_strrstr 
12 * replace vsnprintf with g_vsprintf or g_strdup_vprintf(format,ap);
13 * ...