libapl apl_exec results displayed as ?

2022-07-24 Thread enztec
hello What does libapl output?- the apl_exec function returns 0 to stdout but what is the actual display? for example apl_exec('⍳20') what/where is the 1 to 20 displayed so it can be captured? thanks

Re: libapl apl_exec results displayed as ?

2022-07-24 Thread Chris Moller
apl_exec() can output to both stdout and stderr. I use: std::stringstream outbuffer;  std::streambuf *coutbuf = std::cout.rdbuf();  std::cout.rdbuf(outbuffer.rdbuf());  std::stringstream errbuffer;  std::streambuf *cerrbuf = std::cerr.rdbuf();  std::cerr.rdbuf(errbuffer.rdbu

Re: libapl apl_exec results displayed as ?

2022-07-24 Thread enztec
Hi i can see you code is c++ I am working with libapl with fpc (freepascal) and i can capture stdout and stderr fine in fpc coding but the only stdout i get from ap_exec is the 0 i have apl_exec as a function and tried with either of the following definitions function apl_exec(p : pchar) : lon