Added exercise to work on

This commit is contained in:
kdeng00
2022-10-06 19:23:43 -04:00
parent 60707ffe19
commit 6fde7ef2b3
+16
View File
@@ -0,0 +1,16 @@
/*
*
* 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;
}