1// SPDX-License-Identifier: GPL-2.0 2// 3// subcmd.h - a header for each sub-commands. 4// 5// Copyright (c) 2018 Takashi Sakamoto <o-takashi@sakamocchi.jp> 6// 7// Licensed under the terms of the GNU General Public License, version 2. 8 9#ifndef __ALSA_UTILS_AXFER_SUBCMD__H_ 10#define __ALSA_UTILS_AXFER_SUBCMD__H_ 11 12#include <alsa/asoundlib.h> 13 14int subcmd_list(int argc, char *const *argv, snd_pcm_stream_t direction); 15 16int subcmd_transfer(int argc, char *const *argv, snd_pcm_stream_t direction); 17 18#endif 19