blob: 2ccf762aab507b6770323a9643f3f99cadbb264b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* @file relocation.h
*/
#ifndef OMC_RELOCATION_H
#define OMC_RELOCATION_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <linux/limits.h>
#include <unistd.h>
void replace_text(char *original, const char *target, const char *replacement);
void file_replace_text(const char* filename, const char* target, const char* replacement);
#endif //OMC_RELOCATION_H
|