The hints that IDE provides for functions do not match the description on the relevant help pages.
For example, when typing memcpy( it shows "void * memcpy(void * restrict s1, const void * restrict s2, size_t n)
which is not clear on the fact that s1 is the destination and s2 is the source.
Help page for memcpy says void * memcpy(void * restrict dst, const void * restrict src, size_t num) which is much better.
Can we please have hints that match the definition from the help?