summaryrefslogtreecommitdiff
path: root/StdLib
diff options
context:
space:
mode:
authordarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2011-09-08 22:41:36 +0000
committerdarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2011-09-08 22:41:36 +0000
commite39563392159ec3fc9d4fcc12159906d24fb547b (patch)
tree2475a3dc272f415183028e28ee5e75695a4ec662 /StdLib
parenta0cd353dd2c9db074dfa90cb8df90f52c61f832f (diff)
downloadedk2-platforms-e39563392159ec3fc9d4fcc12159906d24fb547b.tar.xz
StdLib: Replace some non-ASCII characters with ASCII equivalents.
Signed-off-by: darylm503 Reviewed-by: jljusten git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12302 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'StdLib')
-rw-r--r--StdLib/Include/sys/dirent.h2
-rw-r--r--StdLib/Include/wchar.h14
-rw-r--r--StdLib/LibC/Time/gettimeofday.c2
3 files changed, 9 insertions, 9 deletions
diff --git a/StdLib/Include/sys/dirent.h b/StdLib/Include/sys/dirent.h
index 373664d091..14c67ae128 100644
--- a/StdLib/Include/sys/dirent.h
+++ b/StdLib/Include/sys/dirent.h
@@ -68,7 +68,7 @@ struct dirent {
// on the file system volume.
UINT64 Attribute; // The time the file was created.
struct timespec CreateTime; // The time when the file was last accessed.
- struct timespec LastAccessTime; // The time when the file’s contents were last modified.
+ struct timespec LastAccessTime; // The time when the file's contents were last modified.
struct timespec ModificationTime; // The attribute bits for the file. See below.
CHAR16 FileName[1]; // The Null-terminated name of the file.
};
diff --git a/StdLib/Include/wchar.h b/StdLib/Include/wchar.h
index 7a064ee0b4..d8e15caa40 100644
--- a/StdLib/Include/wchar.h
+++ b/StdLib/Include/wchar.h
@@ -257,14 +257,14 @@ struct tm;
Each conversion specification is introduced by the wide character %. After
the %, the following appear in sequence:
- — Zero or more flags (in any order) that modify the meaning of the
+ * Zero or more flags (in any order) that modify the meaning of the
conversion specification.
- — An optional minimum field width. If the converted value has fewer wide
+ * An optional minimum field width. If the converted value has fewer wide
characters than the field width, it is padded with spaces (by default)
on the left (or right, if the left adjustment flag, described later,
has been given) to the field width. The field width takes the form of
an asterisk * (described later) or a nonnegative decimal integer.
- — An optional precision that gives the minimum number of digits to appear
+ * An optional precision that gives the minimum number of digits to appear
for the d, i, o, u, x, and X conversions, the number of digits to
appear after the decimal-point wide character for e, E, f, and F
conversions, the maximum number of significant digits for the g and G
@@ -274,8 +274,8 @@ struct tm;
decimal integer; if only the period is specified, the precision is
taken as zero. If a precision appears with any other conversion
specifier, the behavior is undefined.
- — An optional length modifier that specifies the size of the argument.
- — A conversion specifier wide character that specifies the type of
+ * An optional length modifier that specifies the size of the argument.
+ * A conversion specifier wide character that specifies the type of
conversion to be applied.
As noted above, a field width, or precision, or both, may be indicated by
@@ -296,7 +296,7 @@ struct tm;
if a signed conversion results in no wide characters, a space is
prefixed to the result. If the space and + flags both appear, the
space flag is ignored.
- # The result is converted to an ‘‘alternative form’’. For o conversion,
+ # The result is converted to an "alternative form". For o conversion,
it increases the precision, if and only if necessary, to force the
first digit of the result to be a zero (if the value and precision
are both 0, a single 0 is printed). For x (or X) conversion, a
@@ -384,7 +384,7 @@ struct tm;
The F conversion specifier produces INF or NAN instead
of inf or nan, respectively.
e,E A double argument representing a floating-point number is converted
- in the style [-]d.ddd e±dd, where there is one digit (which is
+ in the style [-]d.ddd e +/- dd, where there is one digit (which is
nonzero if the argument is nonzero) before the decimal-point wide
character and the number of digits after it is equal to the
precision; if the precision is missing, it is taken as 6; if the
diff --git a/StdLib/LibC/Time/gettimeofday.c b/StdLib/LibC/Time/gettimeofday.c
index b26d157684..1de6dfa66f 100644
--- a/StdLib/LibC/Time/gettimeofday.c
+++ b/StdLib/LibC/Time/gettimeofday.c
@@ -10,7 +10,7 @@
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
- * Copyright (c) 1995, 1996, 1997 Kungliga Tekniska Högskolan
+ * Copyright (c) 1995, 1996, 1997 Kungliga Tekniska Hogskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*