Files
MacPass/MacPass/MPFlagsHelper.m
2014-10-22 20:27:41 +02:00

14 lines
295 B
Objective-C

//
// MPFlagsHelper.m
// MacPass
//
// Created by Michael Starke on 27/08/14.
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
//
#import "MPFlagsHelper.h"
BOOL MPIsFlagSetInOptions(const NSUInteger flag, const NSUInteger options ) {
return (0 != (options & flag));
}