time_utils.h
415 Bytes
//
// time_utils.h
//
// Created by cairui01 on 18/11/9.
// Copyright (c) 2018年 baidu. All rights reserved.
//
#ifndef COMM_UTILS_H_
#define COMM_UTILS_H_
#include <stdint.h>
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
uint64_t gettickcount(); // ms
int64_t gettickspan(uint64_t _old_tick); // ms
uint64_t timeMs();
#ifdef __cplusplus
}
#endif
#endif /* COMM_UTILS_H_ */