
Originally Posted by
TriKri
Can you please explain this a bit more carefully? Okay, you don't need any library to use swprintf(), but you have included libraries anyway, why?
.h files are not libraries. They are declarations of functions, other symbols and sets of macros. You could as well simply copy their required contents to your main implementation file:
extern int printf (const char *, ...
);
int main() {
return 0;
};
extern int printf (const char *, ...);
int main() {
printf("%i\n", 42);
return 0;
};
To copy to clipboard, switch view to plain text mode
Bookmarks