diff options
author | Max Kellermann <max@duempel.org> | 2013-04-17 22:25:57 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-04-17 22:25:57 +0200 |
commit | 31bc94160a4dc7b8749cca8c3f7b703548fcb4f4 (patch) | |
tree | 68851b5c81cc064ef061ff400e3cc61cc9352f0e /src/SongSort.hxx | |
parent | 9e5d2c5bb7093dd10337a5b77f6271e06baa0ebe (diff) | |
download | mpd-31bc94160a4dc7b8749cca8c3f7b703548fcb4f4.tar.gz mpd-31bc94160a4dc7b8749cca8c3f7b703548fcb4f4.tar.xz mpd-31bc94160a4dc7b8749cca8c3f7b703548fcb4f4.zip |
song_sort: convert to C++
Diffstat (limited to 'src/SongSort.hxx')
-rw-r--r-- | src/SongSort.hxx | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/SongSort.hxx b/src/SongSort.hxx new file mode 100644 index 000000000..b3b67b0c0 --- /dev/null +++ b/src/SongSort.hxx @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2003-2013 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef MPD_SONG_SORT_HXX +#define MPD_SONG_SORT_HXX + +struct list_head; + +void +song_list_sort(struct list_head *songs); + +#endif |