Posts by Edinho • 53 points
3 posts
-
5
votes1
answer56
viewsQ: Can LLVM be used with the C language?
I’m studying compilers and I’m using the C language and learning about LLVM but all examples are in C++ language. The question is whether I can use the LLVM with the C language and how can I start a…
-
-1
votes1
answer59
viewsQ: Dynamic memory allocation gives error while accessing
I have a problem with my code: #include <stdlib.h> #include <stdio.h> #include <stdint.h> void a(void *po, size_t t) { void *r = realloc(po, t); } int main() { uint8_t *array =…
-
0
votes0
answers42
viewsQ: How to make functions available in the "Python/C API"?
hello I am developing a python module and I have the following problem. When the module is compiled, only one function is available (fun1). how do I get fun2 stay available too? #define…