| 764 | }); |
| 765 | |
| 766 | const char *favcatargname(const char *refdes, int par) |
| 767 | { |
| 768 | static string text[3]; |
| 769 | static int i = 0; |
| 770 | if(par < 0 || par >= FC_NUM) return NULL; |
| 771 | i = (i + 1) % 3; |
| 772 | formatstring(text[i])("sbfavourite_%s_%s", refdes, fc_als[par]); |
| 773 | return text[i]; |
| 774 | } |
| 775 | |
| 776 | void addfavcategory(const char *refdes) |
| 777 | { |
no outgoing calls
no test coverage detected