]> err.no Git - mapper/blob - src/utils.c
Parse directly but update informations in callbacks only if we got a sentence that...
[mapper] / src / utils.c
1 #include <config.h>
2 #include <unistd.h>
3 #include <stdlib.h>
4 #include <string.h>
5 #include <strings.h>
6 #include <stddef.h>
7 #include <locale.h>
8 #include <math.h>
9 #include <glib/gstdio.h>
10
11 #include "path.h"
12 #include "utils.h"
13 #include "mapper-types.h"
14
15 void 
16 sound_noise(void)
17 {
18 #ifdef WITH_HILDON
19 hildon_play_system_sound("/usr/share/sounds/ui-information_note.wav");
20 #else
21 gdk_beep();
22 #endif
23 }
24