mirror of
https://github.com/DualTachyon/uv-k5-firmware.git
synced 2024-11-27 08:59:52 +08:00
11 lines
134 B
C
Executable File
11 lines
134 B
C
Executable File
#ifndef DTMF_H
|
|
#define DTMF_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
bool DTMF_ValidateCodes(char *pCode, uint8_t Size);
|
|
|
|
#endif
|
|
|