Overview
Comment: | Remove snprintf |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8386716c19e66bc862bc1f2e42f08d51 |
User & Date: | js on 2025-03-09 21:36:18 |
Other Links: | manifest | tags |
Context
2025-03-09
| ||
22:00 | Move ServerInfo to separate file check-in: 53f10f3320 user: js tags: trunk | |
21:36 | Remove snprintf check-in: 8386716c19 user: js tags: trunk | |
21:33 | Clean up serverbrowser.mm check-in: 4d3e209260 user: js tags: trunk | |
Changes
Modified src/tools.h from [c2f36ac343] to [64ce1d6c09].
︙ | |||
76 77 78 79 80 81 82 | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | inline void strcat_s(char *d, const char *s) { size_t n = strlen(d); strn0cpy(d + n, s, _MAXDEFSTR - n); } |
︙ |