aboutsummaryrefslogtreecommitdiffstats
path: root/libc/include/regex.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-08-16 16:30:54 -0700
committerElliott Hughes <enh@google.com>2017-08-16 16:30:54 -0700
commit079bff4fa52b0c3c76057451cc9cdecf1827fce0 (patch)
tree1f2667df4a1ed2dd79cb53a6231cb88d3d9ade13 /libc/include/regex.h
parent67e7bf137e00a6c9ef79396e40be6b1705a2758c (diff)
downloadandroid_bionic-079bff4fa52b0c3c76057451cc9cdecf1827fce0.tar.gz
android_bionic-079bff4fa52b0c3c76057451cc9cdecf1827fce0.tar.bz2
android_bionic-079bff4fa52b0c3c76057451cc9cdecf1827fce0.zip
Name function arguments in libc headers for Studio.
Second batch of headers... Bug: http://b/64613623 Test: builds Change-Id: I8eef043dbf32afee8ff814e9d005f46aee8fa21f
Diffstat (limited to 'libc/include/regex.h')
-rw-r--r--libc/include/regex.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/include/regex.h b/libc/include/regex.h
index b06a515b4..c4cc39cd5 100644
--- a/libc/include/regex.h
+++ b/libc/include/regex.h
@@ -97,10 +97,10 @@ typedef struct {
#define REG_BACKR 02000 /* force use of backref code */
__BEGIN_DECLS
-int regcomp(regex_t *, const char *, int);
-size_t regerror(int, const regex_t *, char *, size_t);
-int regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
-void regfree(regex_t *);
+int regcomp(regex_t* __re, const char* __regex, int __flags);
+size_t regerror(int __error_code, const regex_t* __re, char* __buf, size_t __n);
+int regexec(const regex_t* __re, const char* __s, size_t __match_count, regmatch_t __matches[], int __flags);
+void regfree(regex_t* __re);
__END_DECLS
-#endif /* !_REGEX_H_ */
+#endif