Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
c-utility/src/gb_time.c
- Committer:
- XinZhangMS
- Date:
- 2018-08-23
- Revision:
- 0:f7f1f0d76dd6
File content as of revision 0:f7f1f0d76dd6:
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. /*depending if the symbol GB_TIME_INTERCEPT is defined, this file does the following a) if GB_TIME_INTERCEPT is NOT defined, then the file shall be empty (almost:) b) if GB_TIME_INTERCEPT is defined, then the file shall call to the 'real' time.h functions from their gb_* synonyms*/ #ifdef _MSC_VER static const int avoid_a_warning_C4206 = 0; /* warning C4206: nonstandard extension used: translation unit is empty*/ #endif #ifdef GB_TIME_INTERCEPT #ifdef __cplusplus #include <ctime> #else #include <time.h> #endif #include "azure_c_shared_utility/gb_time.h" /*this is time*/ time_t gb_time(time_t *timer); { return time(timer); } /*this is localtime*/ struct tm *gb_localtime(const time_t *timer) { return gb_localtime(timer); } size_t gb_strftime(char * s, size_t maxsize, const char * format, const struct tm * timeptr) { return strftime(s, maxsize, format, timeptr); } #endif