na ocene 4

This commit is contained in:
belfer 2024-05-16 09:21:42 +00:00
parent f6c5d6164b
commit 172dc1daf6
1 changed files with 3 additions and 49 deletions

View File

@ -1,7 +1,6 @@
#include <stdint.h>
char * ptr1 = "janek";
char * ptr2 = "kowalskii";
char * ptr1 = " Dominik P";
int strlen(char *s)
{
@ -16,58 +15,13 @@ void strcpy(char *s, char *t)
while (*s++ = *t++);
}
#define ALLOCSIZE 10000
static char allocbuf[ALLOCSIZE];
static char *allocp = allocbuf;
char *alloc(int n)
{
if (n % 4 != 0) {
n += 4 - (n % 4);
}
if (allocbuf + ALLOCSIZE - allocp >= n) {
allocp += n;
return allocp - n;
} else
return 0;
}
int main() {
char * s = "mpabi";
uint8_t wynik =0;
wynik = strlen (s);
wynik = strlen (ptr);
asm("nop");
}
char * p1 = alloc(strlen(ptr1));
strcpy (p1, ptr1);
asm("nop");
char * p2 = alloc(strlen(ptr2));
strcpy (p2, ptr2);
asm("nop");
struct point {
int16_t x;
int16_t y;
};
struct point * ptrS = (struct point *) alloc(sizeof(point));
ptrS->x=0x10;
ptrS->y=0x20;
asm("nop");
(*ptrS).y= strlen (p1)+ strlen(p2);
return 1;
}