Replace all deprecate functions like wcsicmp with the new ones, like _wcsicmp in...
[reactos.git] / reactos / base / applications / network / net / main.c
index 425b0db..f8adf73 100644 (file)
@@ -20,91 +20,91 @@ int main(int argc, char **argv)
       return 1;
        }
 
-    if (stricmp(argv[1],"ACCOUNTS")==0)
+    if (_stricmp(argv[1],"ACCOUNTS")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"COMPUTER")==0)
+    if (_stricmp(argv[1],"COMPUTER")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"CONFIG")==0)
+    if (_stricmp(argv[1],"CONFIG")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"CONTINUE")==0)
+    if (_stricmp(argv[1],"CONTINUE")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
 
-    if (stricmp(argv[1],"FILE")==0)
+    if (_stricmp(argv[1],"FILE")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"GROUP")==0)
+    if (_stricmp(argv[1],"GROUP")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"HELP")==0)
+    if (_stricmp(argv[1],"HELP")==0)
     {
         return cmdHelp(argc,&argv[1]);
     }
-    if (stricmp(argv[1],"HELPMSG")==0)
+    if (_stricmp(argv[1],"HELPMSG")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"LOCALGROUP")==0)
+    if (_stricmp(argv[1],"LOCALGROUP")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"NAME")==0)
+    if (_stricmp(argv[1],"NAME")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"PRINT")==0)
+    if (_stricmp(argv[1],"PRINT")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"SEND")==0)
+    if (_stricmp(argv[1],"SEND")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"SESSION")==0)
+    if (_stricmp(argv[1],"SESSION")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"SHARE")==0)
+    if (_stricmp(argv[1],"SHARE")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
 
-    if (stricmp(argv[1],"START")==0)
+    if (_stricmp(argv[1],"START")==0)
     {
        return cmdStart(argc, &argv[1]);
     }
-    if (stricmp(argv[1],"STATISTICS")==0)
+    if (_stricmp(argv[1],"STATISTICS")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"STOP")==0)
+    if (_stricmp(argv[1],"STOP")==0)
     {
                return cmdStop(argc, &argv[1]);
     }
-    if (stricmp(argv[1],"TIME")==0)
+    if (_stricmp(argv[1],"TIME")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"USE")==0)
+    if (_stricmp(argv[1],"USE")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"USER")==0)
+    if (_stricmp(argv[1],"USER")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
-    if (stricmp(argv[1],"VIEW")==0)
+    if (_stricmp(argv[1],"VIEW")==0)
     {
-               return unimplement();
+               return unimplemented();
     }
 
     help();
@@ -112,9 +112,9 @@ int main(int argc, char **argv)
 }
 
 
-int unimplement()
+int unimplemented()
 {
-       puts("This command is not implement yet");
+       puts("This command is not implemented yet");
        return 1;
 }