rss-cli/src/rss_out.hpp

20 lines
408 B
C++
Raw Normal View History

2021-07-24 03:24:20 +00:00
///////////////////////////////////////////////////////////////////////////////
// Tyler Perkins
// 7-23-21
// rss output functions
//
#pragma once
#include <string>
#include "options.hpp"
#include "rss.hpp"
namespace rss_utils {
std::string rss_to_list(const rss&, const option_flags*);
2021-07-25 21:05:40 +00:00
std::string rss_to_items(const rss&, const option_flags*);
2021-07-25 21:15:47 +00:00
bool rss_opts_empty(const option_flags*);
2021-07-24 03:24:20 +00:00
}