blob: cad51bf86af28bd390229fc8885c6c2eb7f32a38 [file] [log] [blame]
#ifndef LYNQ_PROP_H
#define LYNQ_PROP_H
#ifdef _cplusplus
extern "C" {
#endif
#define MTK_GPS_DATA_PATH "\"/etc/gnss/\""
#define LYNQ_STRNCPY(dst,src,size) do{\
strncpy((char *)(dst), (char *)(src), (size - 1));\
(dst)[size - 1] = '\0';\
}while(0)
#define F_OK 0
int write_prop(const char *file_name, char* key, char* val);
void mnld_write_cfg(char* key, char* val);
#ifdef _cplusplus
}
#endif
#endif