Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
KritantaDev authored and KritantaDev committed Dec 26, 2020
0 parents commit 8068202
Show file tree
Hide file tree
Showing 387 changed files with 15,634 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Cephei.framework/Cephei.tbd
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 ]
...
7 changes: 7 additions & 0 deletions Cephei.framework/Headers/CompactConstraint.h
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"
25 changes: 25 additions & 0 deletions Cephei.framework/Headers/HBOutputForShellCommand.h
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
Loading

0 comments on commit 8068202

Please sign in to comment.