view libutil/dtmf_valid.c @ 180:565477d07418

themwi-rtp-mgr: close file descriptors after sending them across
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 11 Mar 2023 20:41:23 -0800
parents 64b9f0f90726
children
line wrap: on
line source

/*
 * Here we implement a function that validates DTMF digits which arrive
 * from GSM MS via MNCC_START_DTMF_IND.
 */

is_valid_dtmf_digit(c)
{
	switch (c) {
	case '0':
	case '1':
	case '2':
	case '3':
	case '4':
	case '5':
	case '6':
	case '7':
	case '8':
	case '9':
	case '*':
	case '#':
	case 'A':
	case 'B':
	case 'C':
	case 'D':
		return(1);
	default:
		return(0);
	}
}