l10n: Updates to Chinese (Taiwan) (zh_TW) translation
[pulseaudio-mirror.git] / src / tests / sig2str-test.c
blob0cd929cac768c0a79cae19a12f5d5f9e8e6aafe0
1 /***
2 This file is part of PulseAudio.
4 PulseAudio is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published
6 by the Free Software Foundation; either version 2.1 of the License,
7 or (at your option) any later version.
9 PulseAudio is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with PulseAudio; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17 USA.
18 ***/
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
24 #include <signal.h>
25 #include <stdio.h>
27 #include <pulsecore/macro.h>
28 #include <pulsecore/core-util.h>
30 int main(int argc, char *argv[]) {
31 int sig;
33 for (sig = -1; sig <= NSIG; sig++)
34 printf("%i = %s\n", sig, pa_sig2str(sig));
36 return 0;