Nigel
e6901f0526
The uri has to contain 8.3 filenames for now as I have not yet figured out how to convert from that to regular filenaming for the name comparison. reading files is still limited to 1 sector
16 lines
400 B
C
16 lines
400 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
void* memset (void* ptr, int value, size_t num);
|
|
|
|
int memcmp( const void* ptr1, const void* ptr2, size_t num);
|
|
|
|
[[maybe_unused]] void memcpy (void* dest, const void* src, size_t count );
|
|
|
|
size_t strlen(const char* str);
|
|
|
|
int strncmp ( const char* str1, const char* str2, size_t num );
|
|
|
|
char* strtok(char* str, const char* delim , char**saveptr); |