1/*
2 * Copyright 2010, Stephan Aßmus <superstippi@gmx.de>
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef DURATION_TO_STRING_H
6#define DURATION_TO_STRING_H
7
8
9#include <SupportDefs.h>
10
11
12void duration_to_string(int32 seconds, char* string, size_t stringSize);
13
14
15#endif // DURATION_TO_STRING_H
16