Ninja
Macros
status_printer.cc File Reference
#include "status_printer.h"
#include <cinttypes>
#include <stdarg.h>
#include <stdlib.h>
#include "build.h"
#include "debug_flags.h"
#include "exit_status.h"
Include dependency graph for status_printer.cc:

Go to the source code of this file.

Macros

#define __STDC_FORMAT_MACROS
 
#define FORMAT_TIME_HMMSS(t)
 
#define FORMAT_TIME_MMSS(t)   "%02" PRId64 ":%02" PRId64 "", (t) / 60, (t) % 60
 

Macro Definition Documentation

◆ __STDC_FORMAT_MACROS

#define __STDC_FORMAT_MACROS

Definition at line 21 of file status_printer.cc.

◆ FORMAT_TIME_HMMSS

#define FORMAT_TIME_HMMSS (   t)
Value:
"%" PRId64 ":%02" PRId64 ":%02" PRId64 "", (t) / 3600, ((t) % 3600) / 60, \
(t) % 60
#define PRId64
Definition: win32port.h:33

◆ FORMAT_TIME_MMSS

#define FORMAT_TIME_MMSS (   t)    "%02" PRId64 ":%02" PRId64 "", (t) / 60, (t) % 60