ipodpatcher: Remove unused functions

Co-authored-by: ChatGPT (GPT-5.3 Mini) <chatgpt@openai.com>
Change-Id: Iedb2d42612d543e7761dd1c2628310cd053652e3
This commit is contained in:
Vencislav Atanasov 2026-06-29 21:31:28 +03:00
parent dcc997e4e4
commit d618846a8f

View file

@ -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;