summaryrefslogblamecommitdiffstats
path: root/bstrfirst.c
blob: 6039e14f12fcaa3579593fbf8b2ffe145624b85a (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;
}