aboutsummaryrefslogtreecommitdiff
path: root/test/symbolic/klee/nvim/mbyte.c
blob: 394d17b700bb9b7364db09307d4d91776055ed06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stddef.h>

#include "nvim/types.h"
#include "nvim/mbyte.h"
#include "nvim/ascii.h"

char_u *string_convert(const vimconv_T *conv, char_u *data, size_t *size)
{
  return NULL;
}

int utfc_ptr2len_len(const char_u *p, int size)
{
  if (size < 1 || *p == NUL) {
    return 0;
  }
  return 1;
}