請依下列的定義完成函數。
#include <stdio.h>
///
///函數名稱 count
///函數功能 計算字串當中共用了多少種英文字母
///參數說明
///str 要被搜尋的字串
///
int count(const char str[]);
int main()
{
char str[1000];
gets(str);
printf(“共使用了 %d 種英文字母”, count(str));
return 0;
}
int count(const char str[])
{
}