static size_t scrobbler_curl_concat ( void *  ptr,
size_t  size,
size_t  nmemb,
void *  stream 
) [static]

Concatenate cURL data to a string.

Definition at line 312 of file scrobbler.c.

00313 {
00314         GString *response = stream;
00315         size_t len;
00316 
00317         len = size * nmemb;
00318         g_string_append_len(response, ptr, len);
00319 
00320         return (len);
00321 }

Here is the caller graph for this function:

 All Data Structures Files Functions Variables Defines
Generated on Mon Mar 15 04:45:46 2010 for herrie by  doxygen 1.6.3