]> code.delx.au - pulseaudio/blob - polyp/typeid.c
* fix include file names in installed header files
[pulseaudio] / polyp / typeid.c
1 /* $Id$ */
2
3 /***
4 This file is part of polypaudio.
5
6 polypaudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
10
11 polypaudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
17 License along with polypaudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #include <stdio.h>
23
24 #include "typeid.h"
25
26 char *pa_typeid_to_string(pa_typeid_t id, char *ret_s, size_t length) {
27 if (id == PA_TYPEID_UNKNOWN)
28 snprintf(ret_s, length, "????");
29 else
30 snprintf(ret_s, length, "%c%c%c%c", (char) (id >> 24), (char) (id >> 16), (char) (id >> 8), (char) (id));
31
32 return ret_s;
33 }