Initial commit
This commit is contained in:
24
source/replacement.h
Normal file
24
source/replacement.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef _replacement
|
||||
|
||||
#define _replacement
|
||||
|
||||
#include "array.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
struct replacement{
|
||||
|
||||
int fromIndex;
|
||||
|
||||
int toIndex;
|
||||
|
||||
char * content;
|
||||
|
||||
};
|
||||
|
||||
void replacement_add( int fromKey, int toKey, char * content, struct array * replacements );
|
||||
|
||||
void replacement_sort( struct array * replacements );
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user