11 lines
400 B
C
11 lines
400 B
C
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
|
|
void slotsAddSlots(char *target, char *adding);
|
|
void slotsRemoveSlots(char *target, char *adding);
|
|
int slotsCompareSlots(char *diff, const char *haystack, char *needle);
|
|
int slotsCanAdd(char *needed_slots, const char *slots_total, const char *slots_used, const char *slots_to_add);
|
|
char *slotsBuildTable(const char *slots);
|
|
void slotsFreeTable(char *table);
|
|
#endif
|