Mercurial > hg > octave-nkf > gnulib-hg
annotate doc/posix-functions/isblank.texi @ 15607:6355dc4626b5
doc: Update regarding MSVC 9.
* doc/gnulib-intro.texi (Target Platforms): Classify MSVC as "rarely
tested".
* doc/posix-functions/*.texi: Update with info about MSVC 9.
* doc/posix-headers/*.texi: Likewise.
* doc/pastposix-functions/*.texi: Likewise.
* doc/glibc-functions/*.texi: Likewise.
* doc/glibc-headers/*.texi: Likewise.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 11 Sep 2011 21:56:17 +0200 |
parents | bb0ceefd22dc |
children | fc6f79af802f |
rev | line source |
---|---|
9638
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 @node isblank |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 @section @code{isblank} |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 @findex isblank |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 |
13549
bb0ceefd22dc
avoid some overlong lines from posix urls, etc.
Karl Berry <karl@freefriends.org>
parents:
12186
diff
changeset
|
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isblank.html} |
9638
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 |
12184 | 7 Gnulib module: isblank |
9638
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
9 Portability problems fixed by Gnulib: |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
10 @itemize |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
11 @item |
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
12 This function is missing on some platforms: |
15607
6355dc4626b5
doc: Update regarding MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
13549
diff
changeset
|
13 AIX 4.3.2, IRIX 6.5, OSF/1 5.1, Solaris 9, mingw, MSVC 9. |
9638
070329237839
Rename two directories: headers -> posix-headers, functions -> posix-functions.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
14 @end itemize |
12184 | 15 |
16 Portability problems not fixed by Gnulib: | |
17 @itemize | |
18 @end itemize | |
12186
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
19 |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
20 Note: This function's behaviour depends on the locale, but does not support |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
21 the multibyte characters that occur in strings in locales with |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
22 @code{MB_CUR_MAX > 1} (this includes all the common UTF-8 locales). |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
23 There are four alternative APIs: |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
24 |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
25 @table @code |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
26 @item c_isblank |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
27 This function operates in a locale independent way and returns true only for |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
28 ASCII characters. It is provided by the Gnulib module @samp{c-ctype}. |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
29 |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
30 @item iswblank |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
31 This function operates in a locale dependent way, on wide characters. In |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
32 order to use it, you first have to convert from multibyte to wide characters, |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
33 using the @code{mbrtowc} function. It is provided by the Gnulib module |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
34 @samp{wctype}. |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
35 |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
36 @item mb_isblank |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
37 This function operates in a locale dependent way, on multibyte characters. |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
38 It is provided by the Gnulib module @samp{mbchar}. |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
39 |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
40 @item uc_is_blank |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
41 This function operates in a locale independent way, on Unicode characters. |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
42 It is provided by the Gnulib module @samp{unictype/ctype-blank}. |
f3ad15bb66b0
Document the alternative APIs for character classification.
Bruno Haible <bruno@clisp.org>
parents:
12184
diff
changeset
|
43 @end table |