M2-Planet/functions/string.c

38 lines
999 B
C
Raw Normal View History

2018-02-24 02:18:23 +00:00
/* Copyright (C) 2016 Jeremiah Orians
2018-10-18 00:43:16 +01:00
* This file is part of M2-Planet.
2018-02-24 02:18:23 +00:00
*
2018-10-18 00:43:16 +01:00
* M2-Planet is free software: you can redistribute it and/or modify
2018-02-24 02:18:23 +00:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
2018-10-18 00:43:16 +01:00
* M2-Planet is distributed in the hope that it will be useful,
2018-02-24 02:18:23 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2018-10-18 00:43:16 +01:00
* along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
2018-02-24 02:18:23 +00:00
*/
2018-02-24 02:18:23 +00:00
#include<stdlib.h>
#include<stdio.h>
2018-02-24 02:18:23 +00:00
void copy_string(char* target, char* source, int max)
2018-02-24 02:18:23 +00:00
{
int i = 0;
while(0 != source[i])
2018-02-24 02:18:23 +00:00
{
target[i] = source[i];
i = i + 1;
if(i == max) break;
2018-02-24 02:18:23 +00:00
}
}
2018-06-02 01:05:27 +01:00
int string_length(char* a)
{
int i = 0;
while(0 != a[i]) i = i + 1;
return i;
}