我有一小段 C 代码从提供的字符串中提取电子邮件域,然后对其进行主机查找。它看起来相当简单,并且有效。但是,这是否可以进一步简化,或者做得更好?感谢观看。
struct hostent *host;
int at = 0, ei = 0;
char email_host[MAX_HOSTNAME_LEN];
for ( at = 0; at < strlen(argument); at++ )
{
if (argument[at] == '@' )
{
strcpy(&email_host[ei],&argument[at+1]);
ei++;
}
}
host = gethostbyname(email_host);
if ( !host )
fail = TRUE;