blob: b72e0f0988121b15ee83c426274414d26efec463 [file] [log] [blame]
you.chen5ef374a2023-12-26 17:25:16 +08001#ifndef _LYNQ_ALARM_H_
2#define _LYNQ_ALARM_H_
3
4
5#include<stdio.h>
6#include<stdlib.h>
7#include<regex.h>
8#include<stdbool.h>
9#include<time.h>
10#include<string.h>
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16
17ssize_t wakealarm(char *buffer);
18
19ssize_t poweralarm(char *buffer);
20
21int cancel_wakealarm(void);
22
23#ifdef __cplusplus
24}
25#endif
26
27#endif