mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-12-19 01:45:58 +01:00
bf218c08b4
move common functions to its own .h so it's clearer where are they used and don't get copied in all headers
54 lines
1.6 KiB
C
54 lines
1.6 KiB
C
#include <string.h>
|
|
#include "util.h"
|
|
#include "streamtypes.h"
|
|
|
|
const char* filename_extension(const char* pathname) {
|
|
const char* extension;
|
|
|
|
/* favor strrchr (optimized/aligned) rather than homemade loops */
|
|
extension = strrchr(pathname,'.');
|
|
|
|
if (extension != NULL) {
|
|
/* probably has extension */
|
|
extension++; /* skip dot */
|
|
|
|
/* find possible separators to avoid misdetecting folders with dots + extensionless files
|
|
* (after the above to reduce search space, allows both slashes in case of non-normalized names) */
|
|
if (strchr(extension, '/') == NULL && strchr(extension, '\\') == NULL)
|
|
return extension; /* no slashes = really has extension */
|
|
}
|
|
|
|
/* extensionless: point to null after current name
|
|
* (could return NULL but prev code expects with to return an actual c-string) */
|
|
return pathname + strlen(pathname);
|
|
}
|
|
|
|
|
|
int round10(int val) {
|
|
int round_val = val % 10;
|
|
if (round_val < 5) /* half-down rounding */
|
|
return val - round_val;
|
|
else
|
|
return val + (10 - round_val);
|
|
}
|
|
|
|
/* length is maximum length of dst. dst will always be null-terminated if
|
|
* length > 0 */
|
|
void concatn(int length, char * dst, const char * src) {
|
|
int i,j;
|
|
if (length <= 0) return;
|
|
for (i=0;i<length-1 && dst[i];i++); /* find end of dst */
|
|
for (j=0;i<length-1 && src[j];i++,j++)
|
|
dst[i]=src[j];
|
|
dst[i]='\0';
|
|
}
|
|
|
|
size_t align_size_to_block(size_t value, size_t block_align) {
|
|
if (!block_align)
|
|
return 0;
|
|
|
|
size_t extra_size = value % block_align;
|
|
if (extra_size == 0) return value;
|
|
return (value + block_align - extra_size);
|
|
}
|