/* Copyright 2020, Dirk Krause. All rights reserved. SPDX-License-Identifier: BSD-3-Clause */ #ifndef DK4TIMEC_H_INCLUDED /** Protection against multiple inclusions */ #define DK4TIMEC_H_INCLUDED 1 /** @file dk4timec.h Date/time formats. */ /** Date/time formats. */ enum { /** Complete date and time sortabel, yyyy-mm-dd hh:mm:ss */ DK4_TIMEFORMAT_DATE_TIME = 1, /** Date in sortable format, yyyy-mm-dd */ DK4_TIMEFORMAT_DATE_SORTABLE , /** English/american date format, mm/dd/yyyy */ DK4_TIMEFORMAT_DATE_ENGLISH , /** German date format dd.mm.yyyy */ DK4_TIMEFORMAT_DATE_GERMAN }; #endif