Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(284)

Unified Diff: third_party/minicrt/struplwr.cc

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/minicrt/string.cc ('k') | third_party/minicrt/ulldiv.obj » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/minicrt/struplwr.cc
diff --git a/third_party/minicrt/struplwr.cc b/third_party/minicrt/struplwr.cc
deleted file mode 100644
index 311f7ab50cdec60f2c2544b1b6c16aa1e1615d59..0000000000000000000000000000000000000000
--- a/third_party/minicrt/struplwr.cc
+++ /dev/null
@@ -1,20 +0,0 @@
-//==========================================
-// LIBCTINY - Matt Pietrek 2001
-// MSDN Magazine, January 2001
-//==========================================
-#include "libctiny.h"
-#include <windows.h>
-#include <string.h>
-
-// Force the linker to include USER32.LIB
-#pragma comment(linker, "/defaultlib:user32.lib")
-
-extern "C" char * __cdecl strupr(char *s) {
- CharUpperBuff( s, lstrlen(s) );
- return s;
-}
-
-extern "C" char * __cdecl strlwr(char *s) {
- CharLowerBuff( s, lstrlen(s) );
- return s;
-}
« no previous file with comments | « third_party/minicrt/string.cc ('k') | third_party/minicrt/ulldiv.obj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698