Changeset 60291 in vbox for trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PrintStr.c
- Timestamp:
- Apr 1, 2016 8:51:29 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PrintStr.c
r58675 r60291 5 5 6 6 /* 7 * Copyright (C) 2007-201 5Oracle Corporation7 * Copyright (C) 2007-2016 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 27 27 #include "bs3kit-template-header.h" 28 28 29 #undef Bs3PrintStr 30 BS3_DECL(void) BS3_CMN_NM(Bs3PrintStr)(const char BS3_FAR *pszString) 29 BS3_DECL(void) Bs3PrintStr(const char BS3_FAR *pszString) 31 30 { 32 char ch; 33 while ((ch = *pszString++) != '\0') 34 Bs3PrintChr(ch); 31 Bs3PrintStrN(pszString, Bs3StrLen(pszString)); 35 32 } 36 33
Note:
See TracChangeset
for help on using the changeset viewer.