17 lines
245 B
C
17 lines
245 B
C
//
|
|
// Created by Thom on 2019-05-03.
|
|
//
|
|
|
|
#ifndef BREVENT_PATH_H
|
|
#define BREVENT_PATH_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool isThirdParty(const char *str);
|
|
|
|
bool isDataApp(const char *str);
|
|
|
|
bool isExternalSdApp(const char *str);
|
|
|
|
#endif //BREVENT_PATH_H
|