summaryrefslogblamecommitdiffstats
path: root/bstrfirst.c
blob: 4d8ab0267cc9412277ba8c3f59f0ea5810e77455 (plain) (tree)
1
2
3
4
5
6





                                      
#include "bstr.h"
#include "uint32.h"

const char* bstrfirst(const char* a) {
  if (*a) return a; else return a+5;
}