File: wordexp.cpp

package info (click to toggle)
cg3 1.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,684 kB
  • sloc: cpp: 26,476; xml: 6,139; perl: 1,398; lisp: 1,091; ansic: 178; sh: 47; python: 26; makefile: 14
file content (17 lines) | stat: -rw-r--r-- 275 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "wordexp.h"

namespace CG3_WordExp {

int wordexp(const char* s, wordexp_t* p, int flags) {
	(void)s;
	(void)p;
	(void)flags;
	throw std::runtime_error("NOT IMPLEMENTED");
}

void wordfree(wordexp_t* p) {
	(void)p;
	throw std::runtime_error("NOT IMPLEMENTED");
}

}