This file contains hidden or 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
#include <stdio.h> | |
/* | |
int* lhs: ponteiro de int | |
int* rhs: pointeiro de int | |
*/ | |
void swap(int* lhs, int* rhs) { | |
// primeiramente a função armazena o valor que está contido no ponteiro do primeiro argumento (lhs) | |
// isso permite que possamos alterar o valor contido pelo ponteiro *lhs sem perder o valor original que estava em *lhs. | |
int aux = *lhs; |
This file contains hidden or 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
sudo killall TeamViewer_Service | |
sudo killall TeamViewer | |
sudo killall TeamViewer_Desktop | |
sudo /usr/libexec/PlistBuddy -c "Add :LSUIElement string 1" /Applications/TeamViewer.app/Contents/Info.plist | |
sudo codesign -f -s /Applications/TeamViewer.app | |
sudo launchctl unload /Library/LaunchDaemons/com.teamviewer.teamviewer_service.plist | |
sudo launchctl load /Library/LaunchDaemons/com.teamviewer.teamviewer_service.plist |