diff options
author | Eduardo Chappa <chappa@washington.edu> | 2018-05-21 20:21:14 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2018-05-21 20:21:14 -0600 |
commit | 20e0e95b93f7f1eada65ac6b8e7729534537618c (patch) | |
tree | 7a5375d335e9f3f2597817c1c7760511533b1aa8 /pico | |
parent | f8c4ec4de3dce0765fb20414302cc79726a0cfc5 (diff) | |
download | alpine-20e0e95b93f7f1eada65ac6b8e7729534537618c.tar.xz |
* Nothing to see here, this is just reformatting of the code to
make it easier to find functions when I need to do so.
Diffstat (limited to 'pico')
-rw-r--r-- | pico/search.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pico/search.c b/pico/search.c index fe43c7b6..f3b8e473 100644 --- a/pico/search.c +++ b/pico/search.c @@ -1112,7 +1112,8 @@ readpattern(char *utf8prompt, int text_mode, int flags) } /* given a line, reverse its content */ -void reverse_line(LINE *l) +void +reverse_line(LINE *l) { int i, j, a; UCS u; @@ -1165,7 +1166,8 @@ reverse_buffer(void) /* given a UCS4 string reverse its content */ -void reverse_ucs4(UCS *s) +void +reverse_ucs4(UCS *s) { int i, j; UCS u; |