mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 07:35:42 +01:00
17 lines
398 B
C
17 lines
398 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
//
|
||
|
// misc.h - a header file for miscellaneous tools.
|
||
|
//
|
||
|
// Copyright (c) 2018 Takashi Sakamoto <o-takashi@sakamocchi.jp>
|
||
|
//
|
||
|
// Licensed under the terms of the GNU General Public License, version 2.
|
||
|
|
||
|
#ifndef __ALSA_UTILS_AXFER_MISC__H_
|
||
|
#define __ALSA_UTILS_AXFER_MISC__H_
|
||
|
|
||
|
#include <gettext.h>
|
||
|
|
||
|
#define ARRAY_SIZE(array) (sizeof(array)/sizeof(array[0]))
|
||
|
|
||
|
#endif
|