1
0
forked from Alepha/Alepha

Add a simple commandline parser example.

Also cleaned up a few files.  Since these were pulled from various
scratch repos from informal ISO discussions over the years, they don't
quite line up.  This at least gets everything building again.
This commit is contained in:
2023-10-10 02:24:58 -04:00
parent 83f693de53
commit 76606fca97
15 changed files with 352 additions and 146 deletions

View File

@ -4,6 +4,8 @@ static_assert( __cplusplus > 2020'00 );
#include <cstddef>
#include <string>
namespace Alepha::inline Cavorite ::detail:: word_wrap
{
inline namespace exports
@ -11,3 +13,8 @@ namespace Alepha::inline Cavorite ::detail:: word_wrap
std::string wordWrap( const std::string &text, std::size_t width, std::size_t nextLineOffset= 0 );
}
}
namespace Alepha::Cavorite::inline exports::inline word_wrap
{
using namespace detail::word_wrap::exports;
}