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
#include <stdio.h> | |
#include <string.h> | |
#define CATCH(name) \ | |
if (0) \ | |
_catch_##name: | |
#define FAIL(name) goto _catch_##name | |
#define FAIL_IF(expr, name) \ |
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
/** | |
* Example by Luiz Felipe (Silva97) | |
* | |
* It's just an example. Don't consider it a final code and DON'T write | |
* all your code on a unique module, please. | |
* | |
* Tip: Use a struct to manipulate translate units instead of use only a | |
* FILE pointer ;) | |
*/ |
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
#include <stdio.h> | |
#include "printstruct.h" | |
typedef struct | |
{ | |
int a; | |
char *b; | |
char c; | |
long int d; | |
long long int e; |
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
// See how it's works using: gcc -S get-function-size.c -o get-function-size.s | |
// To manually check function size: objdump -d get-function-size | |
#include <stdio.h> | |
#define DECLARE_FUNCSIZE(funcname) \ | |
extern unsigned int funcname##_funcsize; \ | |
asm(#funcname "_funcsize: .long . - " #funcname "\n\t") | |
#define FUNCSIZE(funcname) \ | |
funcname##_funcsize |
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
#define _GNU_SOURCE | |
#include <dlfcn.h> | |
typedef int (*puts_t)(const char *); | |
int puts(const char *string) | |
{ | |
puts_t original_puts = dlsym(RTLD_NEXT, "puts"); | |
original_puts("-- Hookado --"); |
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
// Just an exercise example. | |
#include <stdio.h> | |
#include <stdlib.h> | |
void crep(int character, unsigned int number); | |
int main(int argc, char **argv) | |
{ | |
if (argc < 2) | |
{ |
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
#include <stdio.h> | |
int main(void) | |
{ | |
int x = 5; | |
float y = 5.0f; | |
int *x_ptr = &x; | |
int *y_ptr = (int *)&y; |
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
name: Sum - Silva97 | |
source code: |- | |
input: '0010+0011' | |
blank: ' ' | |
start state: look | |
table: | |
left4: | |
0: {L: left3} | |
1: {L: left3} | |
'+': {L: left3} |
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
#include <stdio.h> | |
// Example of code in C to get substrings | |
char *substr(char *dest, char *src, int start, int end) | |
{ | |
char *start_address = dest; | |
for (src = src + start; *src && end > 0; dest++, src++, end--) { | |
*dest = *src; | |
} |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include "metric.h" // https://github.com/Silva97/metric | |
int smaller(int a, int b) | |
{ | |
if (a < b) { | |
return a; | |
} |