Replies: 1 comment
-
// multiple lines -- reads first line, more than 200 chars, reads 200 chars
// check_password(qd, "file:/etc/passwd", "");
// todo cleanup the temp file; would need to be able to stub in true capturing lambdas |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
connection_manager.c
#470That does not work because c99 does not compile as c++ in this case, and because there probably would be symbol clashes as not everything is declared
static
. Would need intermediate c file that will reexport some static things, and somehow control the symbol clashes. either new test binary for every included .c, or somehow limit visibility for an .o file, if that is even possible.Beta Was this translation helpful? Give feedback.
All reactions