mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-04-26 00:26:32 +00:00
[common] stringlist: implement item removal
This commit is contained in:
parent
f0beedb5ba
commit
e11246d46e
@ -25,10 +25,11 @@
|
|||||||
|
|
||||||
typedef struct StringList * StringList;
|
typedef struct StringList * StringList;
|
||||||
|
|
||||||
StringList stringlist_new (bool owns_strings);
|
StringList stringlist_new (bool owns_strings);
|
||||||
void stringlist_free (StringList * sl);
|
void stringlist_free (StringList * sl);
|
||||||
int stringlist_push (StringList sl, char * str);
|
int stringlist_push (StringList sl, char * str);
|
||||||
unsigned int stringlist_count(StringList sl);
|
void stringlist_remove(StringList sl, unsigned int index);
|
||||||
char * stringlist_at (StringList sl, unsigned int index);
|
unsigned int stringlist_count (StringList sl);
|
||||||
|
char * stringlist_at (StringList sl, unsigned int index);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -63,6 +63,11 @@ int stringlist_push(StringList sl, char * str)
|
|||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void stringlist_remove(StringList sl, unsigned int index)
|
||||||
|
{
|
||||||
|
vector_remove(&sl->vector, index);
|
||||||
|
}
|
||||||
|
|
||||||
unsigned int stringlist_count(StringList sl)
|
unsigned int stringlist_count(StringList sl)
|
||||||
{
|
{
|
||||||
return vector_size(&sl->vector);
|
return vector_size(&sl->vector);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user