diff options
author | Rob Landley <rob@landley.net> | 2017-06-06 13:21:03 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2017-06-06 13:21:03 -0500 |
commit | e1ee741930349a4daaada29bd6ff4cbc0e313641 (patch) | |
tree | b0395d2469a5b224743d75105f031b3c0e9721cc | |
parent | ab33097058b05a173113832fcca6b8d6c3b6143d (diff) | |
download | toybox-e1ee741930349a4daaada29bd6ff4cbc0e313641.tar.gz |
Add comment explaining strend()
-rw-r--r-- | lib/lib.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -393,6 +393,8 @@ int unescape(char c) return (idx == -1) ? 0 : to[idx]; } +// If string ends with suffix return pointer to start of suffix in string, +// else NULL char *strend(char *str, char *suffix) { long a = strlen(str), b = strlen(suffix); |