I have troubles to include deque in my C code. I thought that deque should be a standard library, but when I am trying to include it with #include <deque>
the compiler's answer is: No such file or directory
.
I was searching for header in files given by
gcc -print-prog-name=cc1 -v
and there is really no deque to be found. Does it exist such library for C and how can I install it? I don't want to write my own implementation.