Programming Tips - What's the best way to remember the order of the parameters to strstr() ?

Date: 2008jul2 Language: C/C++ Q. What's the best way to remember the order of the parameters to strstr() ? A. The GNU man page says this:
char *strstr(const char *haystack, const char *needle);
Search for needle in haystack. Nicely said.