TTKMusicPlayer  3.7.0.0
TTKMusicPlayer imitates Kugou UI, the music player uses of qmmp core library based on Qt for windows and linux
strlcat.cpp
Go to the documentation of this file.
1 #include <string.h>
2 
3 int main(int argc, char *argv[])
4 {
5  char v[2] = {};
6  strlcat(v, "1", 2);
7  return 0;
8 }
size_t strlcat(char *dst, const char *src, size_t dsize)
Definition: strlcat.c:30
int main(int argc, char *argv[])
Definition: strlcat.cpp:3