mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-29 16:31:53 -05:00
18 lines
425 B
C++
18 lines
425 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <list>
|
|
#include <string>
|
|
|
|
namespace mockup
|
|
{
|
|
auto multiLineString(unsigned int no_lines) -> std::string;
|
|
|
|
auto multiWordString(unsigned int no_words) -> std::string;
|
|
|
|
auto lineStrings(unsigned int count) -> std::list<std::string>;
|
|
|
|
} // namespace mockup
|