Linux Audio

Check our new training course

Loading...
v3.5.6
 
 1/*
 2 * Copyright (C) 2010 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
 3 *
 4 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 5 * This program is free software; you can redistribute it and/or
 6 * modify it under the terms of the GNU Lesser General Public
 7 * License as published by the Free Software Foundation;
 8 * version 2.1 of the License (not later!)
 9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 */
21#ifndef __UTIL_H
22#define __UTIL_H
23
24#include <ctype.h>
25
26/* Can be overridden */
27void die(const char *fmt, ...);
28void *malloc_or_die(unsigned int size);
29void warning(const char *fmt, ...);
30void pr_stat(const char *fmt, ...);
31void vpr_stat(const char *fmt, va_list ap);
32
33/* Always available */
34void __die(const char *fmt, ...);
35void __warning(const char *fmt, ...);
36void __pr_stat(const char *fmt, ...);
37
38void __vdie(const char *fmt, ...);
39void __vwarning(const char *fmt, ...);
40void __vpr_stat(const char *fmt, ...);
 
 
 
 
 
 
41
42static inline char *strim(char *string)
43{
44	char *ret;
45
46	if (!string)
47		return NULL;
48	while (*string) {
49		if (!isspace(*string))
50			break;
51		string++;
52	}
53	ret = string;
54
55	string = ret + strlen(ret) - 1;
56	while (string > ret) {
57		if (!isspace(*string))
58			break;
59		string--;
60	}
61	string[1] = 0;
62
63	return ret;
64}
65
66static inline int has_text(const char *text)
67{
68	if (!text)
69		return 0;
70
71	while (*text) {
72		if (!isspace(*text))
73			return 1;
74		text++;
75	}
76
77	return 0;
78}
79
80#endif
v5.4
 1/* SPDX-License-Identifier: LGPL-2.1 */
 2/*
 3 * Copyright (C) 2010 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
 4 *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 5 */
 6#ifndef __UTIL_H
 7#define __UTIL_H
 8
 9#include <ctype.h>
10
11/* Can be overridden */
 
 
12void warning(const char *fmt, ...);
13void pr_stat(const char *fmt, ...);
14void vpr_stat(const char *fmt, va_list ap);
15
16/* Always available */
 
17void __warning(const char *fmt, ...);
18void __pr_stat(const char *fmt, ...);
19
 
20void __vwarning(const char *fmt, ...);
21void __vpr_stat(const char *fmt, ...);
22
23#define min(x, y) ({				\
24	typeof(x) _min1 = (x);			\
25	typeof(y) _min2 = (y);			\
26	(void) (&_min1 == &_min2);		\
27	_min1 < _min2 ? _min1 : _min2; })
28
29static inline char *strim(char *string)
30{
31	char *ret;
32
33	if (!string)
34		return NULL;
35	while (*string) {
36		if (!isspace(*string))
37			break;
38		string++;
39	}
40	ret = string;
41
42	string = ret + strlen(ret) - 1;
43	while (string > ret) {
44		if (!isspace(*string))
45			break;
46		string--;
47	}
48	string[1] = 0;
49
50	return ret;
51}
52
53static inline int has_text(const char *text)
54{
55	if (!text)
56		return 0;
57
58	while (*text) {
59		if (!isspace(*text))
60			return 1;
61		text++;
62	}
63
64	return 0;
65}
66
67#endif