Bug 1846030 [wpt PR 41229] - CloseWatcher: factor out and expand Esc key tests, a...
[gecko.git] / tools / clang-tidy / test / clang-analyzer-security.insecureAPI.gets.cpp
blobf096c29de31d634fc769f7285628919fda3192a7
1 #include <stdio.h>
3 void test() {
4 char buff[1024];
5 gets(buff);