mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
15 lines
320 B
C++
15 lines
320 B
C++
|
|
typedef long unsigned int size_t;
|
|
|
|
extern "C" {
|
|
extern size_t strlen (const char *__s) throw ()
|
|
__attribute__ ((__pure__))
|
|
__attribute__ ((__nonnull__ (1)));
|
|
}
|
|
|
|
void fun(void) {
|
|
static constexpr const char *fn = "file.ext";
|
|
static constexpr size_t len = strlen(fn);
|
|
}
|
|
|