mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
18 lines
544 B
C++
18 lines
544 B
C++
#ifndef __UTILITY_H__
|
|
#define __UTILITY_H__
|
|
|
|
#include <apps/external/archive.h>
|
|
#include <ion/unicode/code_point.h>
|
|
#include <ion/unicode/utf8_decoder.h>
|
|
|
|
namespace Reader
|
|
{
|
|
|
|
bool stringEndsWith(const char* str, const char* end);
|
|
int filesWithExtension(const char* extension, External::Archive::File* files, int filesSize);
|
|
void stringNCopy(char* dest, int max, const char* src, int len);
|
|
const char * EndOfPrintableWord(const char * word, const char * end);
|
|
const char * StartOfPrintableWord(const char * word, const char * start);
|
|
|
|
}
|
|
#endif |