File: charset.h

package info (click to toggle)
id3v2 0.1.12%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 416 kB
  • sloc: cpp: 4,213; makefile: 63
file content (10 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#ifndef __CHARSET_H__
#define __CHARSET_H__

#include <id3/tag.h>

char *GetID3EncText (const ID3_Frame *frame, ID3_FieldID fldName);
char *GetID3EncText (const ID3_Frame *frame, ID3_FieldID fldName, size_t idx);
void SetID3EncText (ID3_Frame *frame, ID3_FieldID fldName, char *text);

#endif