MCPcopy Create free account
hub / github.com/conflow-dev/ConFlow / printf

Function printf

sgx_tf_ops/Enclave/Enclave.cpp:29–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27};
28
29void printf(const char *fmt, ...)
30{
31 char buf[BUFSIZ] = {'\0'};
32 va_list ap;
33 va_start(ap, fmt);
34 vsnprintf(buf, BUFSIZ, fmt, ap);
35 va_end(ap);
36 ocall_print_string(buf);
37}
38
39float gaussrand_NORMAL() {
40 float V1, V2, S;

Callers 5

ocall_print_stringFunction · 0.85
print_error_messageFunction · 0.85
initialize_enclaveFunction · 0.85
destroy_enclaveFunction · 0.85
ceshiFunction · 0.85

Calls 1

ocall_print_stringFunction · 0.85

Tested by

no test coverage detected