17 lines
265 B
C
17 lines
265 B
C
/*
|
|
*
|
|
* Exercise 5-15. Add the option -f to fold upper and lower case together, so that case
|
|
distinctions are not made during sorting; for example, a and A compare equal.
|
|
*
|
|
* Author: Kun Deng
|
|
*/
|
|
|
|
|
|
main(int argc, char **argv)
|
|
{
|
|
auto i = 0;
|
|
|
|
|
|
return 0;
|
|
}
|