Functions that implement the input echo * number

Source: Internet
Author: User

/*
When the user enters the password, it is often echoed * or other hidden characters, so:
*/

#define MaxLen 6
Char passwd[maxlen+1]= "";

Char *getpasswd () {
unsigned char c;
int i=0;
while ((C=getch ())! = ' \ r ') {
if (I<maxlen&&isprint (c)) {
Passwd[i++]=c;
Putchar (' * ');
} else if (i>0&&c== ' \b ') {
I.;
Putchar (' \b ');
Putchar (");
Putchar (' \b ');
}
}
Putchar (' \ n ');
passwd[i]= ' + ';
return passwd;
}

Convert a string to an orthopedic **************/
int Changechar (char *str) {
int num=0,k,len,j;
Len=strlen (str);
for (; *str; str++) {
k=*str-' 0 ';
J= (--len);
while (j--) k*=10;
Num+=k;
}
return num; Converts character-type passwords to integer types
}

Functions that implement the input echo * number

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.