I was reading Linux socket programing and came across something I have not yet see.
strncpy(adr_unix.sun_path,pth_unix,
sizeof adr_unix.sun_path -1)
[sizeof adr_unix.sun_path - 1] =0; <--- what is this
I understand how to use strncpy not a problem but if you will look above you will see what I am asking about the function is not ";" terminated.It looks like type of indirection not sure anyone know? If you do can you point to the right direction so I can research this more.