In my case, I want to see if busybox has "md5sum" builtin.
I am currently doing this:
$ echo | busybox md5sum &>/dev/null && echo yes || echo no
I have not been able to find any information as to whether there is anything built into busybox to query what features are available programatically.
Yes, I can list the available applets by running it with no arguments, but trying to grep the output would be error prone and there is no guarantee as to whether grep will be available.