How to use c library functions in assembly language?

As described in the title, how to use the c library functions in assembly language? In fact, I want to know how to get the file pointer to stdin. Thanks for your reply.

+3
source share
1 answer

you can write a simple program with fgets and compile it with gcc -S to see how to do it

+5
source

Source: https://habr.com/ru/post/1739600/


All Articles