summaryrefslogtreecommitdiff
path: root/tests/test_wmemset_static.c
blob: 29ea7aa0d6d71010e18d061fd86edbd65a35a456 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "common.h"

#include <wchar.h>

int main(int argc, char** argv) {
  wchar_t buffer[4] = {0};
  wmemset(buffer, L'A', 3);

  CHK_FAIL_START
  wmemset(buffer, L'B', 16);
  CHK_FAIL_END

  return ret;
}