This should be a pretty straightforward question. I'm brushing up on my C and want to make sure I'm understanding const pointers correctly.
Say I have a function static void penv(const char * const * envp)
; I think this reads as "penv takes a pointer envp to a const pointer to a const char". Is this correct?