diff options
author | Nico Weber <thakis@chromium.org> | 2015-08-04 12:19:10 -0700 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2015-08-04 12:19:10 -0700 |
commit | b048f791a15f2da781a01eba5b09eb9d389f9c11 (patch) | |
tree | 6850a73c18bbc41eaf4b1fdc6b3c96646d45587b /public/fpdf_searchex.h | |
parent | c8eeed31f217d99a706b0cbf5e4ce0bcc12beb64 (diff) | |
download | pdfium-b048f791a15f2da781a01eba5b09eb9d389f9c11.tar.xz |
clang-format all pdfium code.
No behavior change.
Generated by:
find . -name '*.cpp' -o -name '*.h' | \
grep -E -v 'third_party|thirdparties|lpng_v163' | \
xargs ../../buildtools/mac/clang-format -i
See thread "tabs vs spaces" on pdfium@googlegroups.com for discussion.
BUG=none
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1265503005 .
Diffstat (limited to 'public/fpdf_searchex.h')
-rw-r--r-- | public/fpdf_searchex.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/public/fpdf_searchex.h b/public/fpdf_searchex.h index 1d43eab8cf..a6b6e1bdbf 100644 --- a/public/fpdf_searchex.h +++ b/public/fpdf_searchex.h @@ -16,11 +16,14 @@ extern "C" { // Function: FPDFText_GetCharIndexFromTextIndex // Get the actually char index in text_page's internal char list. // Parameters: -// text_page - Handle to a text page information structure. Returned by FPDFText_LoadPage function. -// nTextIndex - The index of the text in the string get from FPDFText_GetText. +// text_page - Handle to a text page information structure. +// Returned by FPDFText_LoadPage function. +// nTextIndex - The index of the text in the string get from +// FPDFText_GetText. // Return value: // The index of the character in internal charlist. -1 for error. -DLLEXPORT int STDCALL FPDFText_GetCharIndexFromTextIndex(FPDF_TEXTPAGE text_page, int nTextIndex); +DLLEXPORT int STDCALL +FPDFText_GetCharIndexFromTextIndex(FPDF_TEXTPAGE text_page, int nTextIndex); #ifdef __cplusplus } |