aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/machine/riscv/stpcpy.c
blob: 14c32221179b3f3b552e5af8e83e1163a8cea0c7 (plain)
1
2
3
4
5
6
7
#include <stdbool.h>
#include "rv_string.h"

char *stpcpy(char *dst, const char *src)
{
  return __libc_strcpy(dst, src, false);
}