mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-12 14:42:31 -05:00
For the git migration we want a nice clean repository with UNIX line endings. git does not use svn:eol-style, we just need the file contents to be sane. Sorry everybody. I know this messes up blame. Scumbag *NIX developer says migrating to git will make line ending issues go away; commits giant change to svn which changes line endings anyway. :) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30924 a1c6a512-1295-4272-9138-f99709370657
15 lines
199 B
C
15 lines
199 B
C
|
|
#ifndef MBREADER_H
|
|
#define MBREADER_H
|
|
|
|
#include "codeclib.h"
|
|
|
|
struct mbreader_t {
|
|
const char *ptr;
|
|
size_t size;
|
|
size_t offset;
|
|
};
|
|
|
|
int mbread(struct mbreader_t *md, void *buf, size_t n);
|
|
|
|
#endif
|