ObjFW  Check-in [2c53019def]

Overview
Comment:OFStrPTime.h: Add missing nullability
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2c53019def5cf1d4056fe80c6d33228acf72f565cd4bf9b71904370d17d17ddc
User & Date: js on 2021-05-13 15:22:53
Other Links: manifest | tags
Context
2021-05-13
15:26
Rename library.xml to amiga-library.xml check-in: f5f489641f user: js tags: trunk
15:22
OFStrPTime.h: Add missing nullability check-in: 2c53019def user: js tags: trunk
15:20
Add OFLogV() check-in: 323ec38f36 user: js tags: trunk
Changes

Modified src/OFStrPTime.h from [4d3408cfa3] to [cb6a50b81d].

25
26
27
28
29
30
31
32
33
34
35
36
37
38
#import "macros.h"

OF_ASSUME_NONNULL_BEGIN

#ifdef __cplusplus
extern "C" {
#endif
extern const char *OFStrPTime(const char *buf, const char *fmt, struct tm *tm,
    short *tz);
#ifdef __cplusplus
}
#endif

OF_ASSUME_NONNULL_END







|
|





25
26
27
28
29
30
31
32
33
34
35
36
37
38
#import "macros.h"

OF_ASSUME_NONNULL_BEGIN

#ifdef __cplusplus
extern "C" {
#endif
extern const char *_Nullable OFStrPTime(const char *buffer, const char *format,
    struct tm *tm, short *_Nullable tz);
#ifdef __cplusplus
}
#endif

OF_ASSUME_NONNULL_END