1
0

Add C/C++ template

This commit is contained in:
Athanasios Xygkis
2020-09-14 08:55:52 +02:00
parent cd0392d6d2
commit d52d4fc3a9
12 changed files with 667 additions and 0 deletions

9
template_cpp/run.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Change the current working directory to the location of the present file
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
ret=0
exec 3>&1; $("$DIR"/bin/da_proc "$@" >&3); ret=$?; exec 3>&-
exit $ret