7 lines
126 B
C
7 lines
126 B
C
#include "bstr.h"
|
|
#include <libowfat/uint32.h>
|
|
|
|
const char* bstrfirst(const char* a) {
|
|
if (*a) return a; else return a+5;
|
|
}
|