aboutsummaryrefslogtreecommitdiffstats
path: root/src/locate.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-24 14:52:05 +0100
committerMax Kellermann <max@duempel.org>2009-01-24 14:52:05 +0100
commit53e712aca40d631bd26a2af4c0731aa8924cde5b (patch)
tree22654ae1cc2cfc2ef72c9fba38c8639064090ae8 /src/locate.c
parent627d590ce524faf7ec197c54e65076107af27fe9 (diff)
downloadmpd-53e712aca40d631bd26a2af4c0731aa8924cde5b.tar.gz
mpd-53e712aca40d631bd26a2af4c0731aa8924cde5b.tar.xz
mpd-53e712aca40d631bd26a2af4c0731aa8924cde5b.zip
locate: renamed LocateTagItem to "struct locate_item"
No CamelCase and no typedefs.
Diffstat (limited to 'src/locate.c')
-rw-r--r--src/locate.c24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/locate.c b/src/locate.c
index a7804ea49..dbb73a861 100644
--- a/src/locate.c
+++ b/src/locate.c
@@ -53,7 +53,7 @@ int getLocateTagItemType(const char *str)
return -1;
}
-static int initLocateTagItem(LocateTagItem * item,
+static int initLocateTagItem(struct locate_item *item,
const char *typeStr, const char *needle)
{
item->tagType = getLocateTagItemType(typeStr);
@@ -66,9 +66,10 @@ static int initLocateTagItem(LocateTagItem * item,
return 0;
}
-LocateTagItem *newLocateTagItem(const char *typeStr, const char *needle)
+struct locate_item *
+newLocateTagItem(const char *typeStr, const char *needle)
{
- LocateTagItem *ret = g_new(LocateTagItem, 1);
+ struct locate_item *ret = g_new(struct locate_item, 1);
if (initLocateTagItem(ret, typeStr, needle) < 0) {
free(ret);
@@ -78,7 +79,7 @@ LocateTagItem *newLocateTagItem(const char *typeStr, const char *needle)
return ret;
}
-void freeLocateTagItemArray(int count, LocateTagItem * array)
+void freeLocateTagItemArray(int count, struct locate_item *array)
{
int i;
@@ -88,11 +89,12 @@ void freeLocateTagItemArray(int count, LocateTagItem * array)
free(array);
}
-int newLocateTagItemArrayFromArgArray(char *argArray[],
- int numArgs, LocateTagItem ** arrayRet)
+int
+newLocateTagItemArrayFromArgArray(char *argArray[],
+ int numArgs, struct locate_item **arrayRet)
{
int i, j;
- LocateTagItem *item;
+ struct locate_item *item;
if (numArgs == 0)
return 0;
@@ -100,7 +102,7 @@ int newLocateTagItemArrayFromArgArray(char *argArray[],
if (numArgs % 2 != 0)
return -1;
- *arrayRet = g_new(LocateTagItem, numArgs / 2);
+ *arrayRet = g_new(struct locate_item, numArgs / 2);
for (i = 0, item = *arrayRet; i < numArgs / 2; i++, item++) {
if (initLocateTagItem
@@ -120,7 +122,7 @@ fail:
return -1;
}
-void freeLocateTagItem(LocateTagItem * item)
+void freeLocateTagItem(struct locate_item *item)
{
free(item->needle);
free(item);
@@ -178,7 +180,7 @@ strstrSearchTag(const struct song *song, enum tag_type type, const char *str)
int
strstrSearchTags(const struct song *song, int numItems,
- const LocateTagItem *items)
+ const struct locate_item *items)
{
int i;
@@ -240,7 +242,7 @@ tagItemFoundAndMatches(const struct song *song, enum tag_type type,
int
tagItemsFoundAndMatches(const struct song *song, int numItems,
- const LocateTagItem * items)
+ const struct locate_item *items)
{
int i;