selinux/libselinux/man/man3/security_check_context.3
Mike Frysinger 7179fd8738 man: standardize spacing with pointers in prototypes
The majority of prototypes don't put a space between the "*" and the
parameter name.  i.e. this style is incorrect:
	char * foo;
Instead, we want:
	char *foo;

Fix a bunch of references that use this uncommon style.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2016-12-12 14:44:26 -05:00

24 lines
634 B
Groff

.TH "security_check_context" "3" "1 January 2004" "russell@coker.com.au" "SELinux API documentation"
.SH "NAME"
security_check_context \- check the validity of a SELinux context
.
.SH "SYNOPSIS"
.B #include <selinux/selinux.h>
.sp
.BI "int security_check_context(char *" con );
.sp
.BI "int security_check_context_raw(char *" con );
.
.SH "DESCRIPTION"
.BR security_check_context ()
returns 0 if SELinux is running and the context is valid, otherwise it
returns \-1.
.BR security_check_context_raw ()
behaves identically to
.BR \%security_check_context ()
but does not perform context translation.
.
.SH "SEE ALSO"
.BR selinux "(8)"