mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-07-10 13:29:52 -04:00
ipodpatcher: Remove unused functions
Co-authored-by: ChatGPT (GPT-5.3 Mini) <chatgpt@openai.com> Change-Id: Iedb2d42612d543e7761dd1c2628310cd053652e3
This commit is contained in:
parent
dcc997e4e4
commit
d618846a8f
1 changed files with 0 additions and 13 deletions
|
|
@ -127,19 +127,6 @@ static inline int be2int(unsigned char* buf)
|
|||
return res;
|
||||
}
|
||||
|
||||
static inline int getint16le(char* buf)
|
||||
{
|
||||
int16_t res = (buf[1] << 8) | buf[0];
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
static inline void short2le(unsigned short val, unsigned char* addr)
|
||||
{
|
||||
addr[0] = val & 0xFF;
|
||||
addr[1] = (val >> 8) & 0xff;
|
||||
}
|
||||
|
||||
static inline void int2le(unsigned int val, unsigned char* addr)
|
||||
{
|
||||
addr[0] = val & 0xFF;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue