setopt/tests/test_template.cpp.m4
2023-06-12 15:38:07 +02:00

14 lines
235 B
Plaintext

#include <stdio.h>
#include <unordered_map>
#include "setopt.hpp"
using namespace std;
signed main(){
opterrno = 0;
std::unordered_map<char, std::string> argv;
include(test)
printf("%d %d\n", optc, opterrno);
return opterrno;
}