dev/bash/xml/xmlstarlet/xmlattrsort.cpp

31 lines
449 B
C++
Raw Normal View History

2011-04-07 14:37:48 +04:00
#include <cstdlib>
#include <stdio.h>
#include <string>
#include <iostream>
using namespace std;
int main(int argc, char *argv[]) {
/*
* Читаем xml файл в переменную xml
*/
string xml;
char c;
while ((c = getc(stdin)) != EOF)
xml += c;
/*
* В цикле просматриваем всю xml
*/
for (size_t i = 0, max_i = xml.length(); i < max_i; i++) {
cout << xml[i];
}
return EXIT_SUCCESS;
}