aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/utils.h
blob: 18863e88088ab12d6f183f36404a703c591ad1c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Asterisk -- A telephony toolkit for Linux.
 *
 * Utility functions
 *
 * Copyright (C) 2004, Digium
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License
 */

#ifndef _ASTERISK_UTIL_H
#define _ASTERISK_UTIL_H

static inline int ast_strlen_zero(const char *s)
{
	return (*s == '\0');
}

#endif