-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
KritantaDev
authored and
KritantaDev
committed
Dec 26, 2020
0 parents
commit 8068202
Showing
387 changed files
with
15,634 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
archs: [ armv7, arm64, arm64e ] | ||
platform: ios | ||
install-name: /Library/Frameworks/Cephei.framework/Cephei | ||
current-version: 0 | ||
compatibility-version: 0 | ||
objc-constraint: retain_release | ||
exports: | ||
- archs: [ armv7, arm64, arm64e ] | ||
symbols: [ _HBOutputForShellCommand, _HBOutputForShellCommandWithReturnCode, _HBPreferencesDidChangeNotification, | ||
_HBPreferencesNotMobileException, _KnownIdentifiers, __CFPreferencesCopyKeyListWithContainer, | ||
__CFPreferencesCopyMultipleWithContainer, __CFPreferencesCopyValueWithContainer, | ||
__CFPreferencesSetValueWithContainer, __CFPreferencesSynchronizeWithContainer, _globalBundle ] | ||
objc-classes: [ _HBPreferences, _HBPreferencesCore, _HBPreferencesIPC, _HBRespringController ] | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// | ||
// Created by Marco Arment on 2014-04-06. | ||
// Copyright (c) 2014 Marco Arment. See included LICENSE file. | ||
// | ||
|
||
#import "NSLayoutConstraint+CompactConstraint.h" | ||
#import "UIView+CompactConstraint.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#include <sys/cdefs.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
__BEGIN_DECLS | ||
|
||
/** | ||
* Executes a shell command and returns its output. | ||
* | ||
* @param command The shell command to run. | ||
* @param returnCode A pointer to an integer that will contain the return code of the command. | ||
* @returns The output of the provided command. | ||
*/ | ||
NSString * _Nullable HBOutputForShellCommandWithReturnCode(NSString *command, int *returnCode); | ||
|
||
/** | ||
* Executes a shell command and returns its output. | ||
* | ||
* @param command The shell command to run. | ||
* @returns The output of the provided command, or nil if the command returned with a code other | ||
* than 0. | ||
*/ | ||
NSString * _Nullable HBOutputForShellCommand(NSString *command); | ||
|
||
__END_DECLS | ||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.