change to const
[libmpd.git] / src / libmpd-strfsong.h
blob649e866588a0fd919b533d960e352da6d2b14d18
1 #ifndef __STRFSONG_H__
2 #define __STRFSONG_H__
4 #include "libmpd.h"
5 /**
6 * \ingroup Misc
7 * @param s A buffer to write the string in
8 * @param max The max length of the buffer
9 * @param format The markup string
10 * @param song A mpd_Song
12 * printfs a formatted string of a mpd_Song
14 * @returns The length of the new formatted string
17 unsigned int mpd_song_markup(char *s, unsigned int max, const char *format, mpd_Song * song);
19 #endif