|
NAMEmemrchr - find last occurence of a character within another memory blockSYNOPSIS#include <publib.h> void *memrchr(const void *v, int c, size_t size); DESCRIPTIONmemrchr finds the last occurence of character c within memory block v, of length size.RETURN VALUEmemrchr returns a pointer to the the match, if it finds any, or a null pointer if it doesn't.SEE ALSOpublib(3), memchr(3)AUTHORLars Wirzenius (lars.wirzenius@helsinki.fi)
Visit the GSP FreeBSD Man Page Interface. |