/* ... */
#ifndef __APP_HF_MSG_SET_H__
#define __APP_HF_MSG_SET_H__
#define HF_MSG_ARGS_MAX (5)
typedef int (* hf_cmd_handler)(int argn, char **argv);
typedef struct {
const char *str;
hf_cmd_handler handler;
}{ ... } hf_msg_hdl_t;
void register_hfp_hf(void);/* ... */
#endif