* Introduce a new strcatf() function to help simplify some areas of the code.

This commit is contained in:
Justin Maggard
2011-05-13 22:10:15 +00:00
parent 4daad1291e
commit 23746a68bf
6 changed files with 245 additions and 361 deletions

View File

@ -44,6 +44,12 @@ struct runtime_vars_s {
int notify_interval; /* seconds between SSDP announces */
};
struct string_s {
char *data; // ptr to start of memory area
int off;
int size;
};
enum media_types {
ALL_MEDIA,
AUDIO_ONLY,