summaryrefslogtreecommitdiff
path: root/src/exporter.cpp
blob: bd414a751909e508034da818137777160b99256d (plain)
1
2
3
4
5
6
7
8
9
10
#include "exporter.hpp"


void XiftExporter::Put(const char *str)
{
    while (*str) {
        Put(*str);
        ++str;
    }
}