repo.or.cz
/
dockapps.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
wmcalc: Null-termitate display string when clearing.
[dockapps.git]
/
wmmp3
/
song_hash.h
blob
18b887e937d07206526cbadedaa84f0bd65583c2
1
#ifndef __SONG_HASH__
2
#define __SONG_HASH__
3
4
#include <stdio.h>
5
6
struct
hash_elt
{
7
struct
hash_elt
*
next
;
8
char
*
title
;
9
char
*
filename
;
10
int
track_num
;
11
};
12
13
void
insert_song
(
int
track_num
,
char
*
title
,
char
*
filename
);
14
struct
hash_elt
*
get_song
(
int
track_num
);
15
void
empty_hash
();
16
void
print_hash
();
17
18
#endif