summaryrefslogtreecommitdiff
path: root/src/exporter.cpp
blob: d65a9fc507a874a93fbebf1a510f4de21b754bcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "exporter.hpp"

#include <string.h>


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Texo Exporter
 */
bool TexoExporter::Put(const char *str)
{
    bool ok = true;
    while (ok && *str) {
        ok = Put(*str);
        ++str;
    }
    return ok;
}