implemented fast forward and max ff speed
This commit is contained in:
parent
b3283adf0b
commit
f9eee026f3
3 changed files with 98 additions and 10 deletions
|
|
@ -1,6 +1,8 @@
|
|||
#ifndef UTILS_H
|
||||
#define UTILS_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
int prefixMatch(char* pre, char* str);
|
||||
int suffixMatch(char* suf, char* str);
|
||||
int exactMatch(char* str1, char* str2);
|
||||
|
|
@ -20,4 +22,6 @@ void getFile(char* path, char* buffer, size_t buffer_size);
|
|||
void putInt(char* path, int value);
|
||||
int getInt(char* path);
|
||||
|
||||
uint64_t getMicroseconds(void);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue