summaryrefslogtreecommitdiffstats
path: root/bstrstart.c
blob: 7c184185a77374b66aa2c247cf2f5c2e844c9ad5 (plain) (blame)
1
2
3
4
5
6
#include "bstr.h"
#include <uint32.h>

size_t bstrstart(const char* a) {
  if (*a) return 0; else return 5;
}