mirror of
https://github.com/javalsai/lidm.git
synced 2025-09-03 11:48:00 +02:00
lint(fix): nullability of log ptrs
This commit is contained in:
@@ -3,10 +3,12 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
void log_init(FILE* fd);
|
#include "macros.h"
|
||||||
void log_puts(const char* msg);
|
|
||||||
void log_printf(const char* fmt, ...);
|
void log_init(FILE* NNULLABLE fd);
|
||||||
|
void log_puts(const char* NNULLABLE msg);
|
||||||
|
void log_printf(const char* NNULLABLE fmt, ...);
|
||||||
// NOLINTNEXTLINE(readability-identifier-length)
|
// NOLINTNEXTLINE(readability-identifier-length)
|
||||||
void log_perror(const char* s);
|
void log_perror(const char* NNULLABLE s);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user