Compare commits
	
		
			2 Commits
		
	
	
		
			2ee2c8ce27
			...
			b0cdcabe1a
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| b0cdcabe1a | |||
| a8ba784397 | 
							
								
								
									
										21
									
								
								src/yadisk.h
									
									
									
									
									
								
							
							
						
						
									
										21
									
								
								src/yadisk.h
									
									
									
									
									
								
							| @@ -1,6 +1,21 @@ | ||||
| // | ||||
| // Created by maxim on 27.11.23. | ||||
| // | ||||
| /* | ||||
|  * libyadisk - A C library for interacting with Yandex.Disk API | ||||
|  * | ||||
|  * Copyright (C) 2023 Maxim Slipenko | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU Lesser General Public License as published by | ||||
|  * the Free Software Foundation, either version 3 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This library is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU Lesser General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU Lesser General Public License | ||||
|  * along with this program.  If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||||
|  */ | ||||
|  | ||||
| #ifndef YADISK_YADISK_H | ||||
| #define YADISK_YADISK_H | ||||
|   | ||||
| @@ -1,6 +1,23 @@ | ||||
| // | ||||
| // Created by maxim on 27.11.23. | ||||
| // | ||||
| /* | ||||
|  * libyadisk - A C library for interacting with Yandex.Disk API | ||||
|  * | ||||
|  * This file is part of libyadisk. | ||||
|  * | ||||
|  * Copyright (C) 2023 Maxim Slipenko | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU Lesser General Public License as published by | ||||
|  * the Free Software Foundation, either version 3 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This library is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU Lesser General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU Lesser General Public License | ||||
|  * along with this program.  If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||||
|  */ | ||||
|  | ||||
| #include <string.h> | ||||
| #include <stdlib.h> | ||||
|   | ||||
| @@ -1,6 +1,23 @@ | ||||
| // | ||||
| // Created by maxim on 27.11.23. | ||||
| // | ||||
| /* | ||||
|  * libyadisk - A C library for interacting with Yandex.Disk API | ||||
|  * | ||||
|  * This file is part of libyadisk. | ||||
|  * | ||||
|  * Copyright (C) 2023 Maxim Slipenko | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU Lesser General Public License as published by | ||||
|  * the Free Software Foundation, either version 3 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This library is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU Lesser General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU Lesser General Public License | ||||
|  * along with this program.  If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||||
|  */ | ||||
|  | ||||
| #ifndef YADISK_YADISK_API_INTERNAL_H | ||||
| #define YADISK_YADISK_API_INTERNAL_H | ||||
|   | ||||
| @@ -1,6 +1,23 @@ | ||||
| // | ||||
| // Created by maxim on 27.11.23. | ||||
| // | ||||
| /* | ||||
|  * libyadisk - A C library for interacting with Yandex.Disk API | ||||
|  * | ||||
|  * This file is part of libyadisk. | ||||
|  * | ||||
|  * Copyright (C) 2023 Maxim Slipenko | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU Lesser General Public License as published by | ||||
|  * the Free Software Foundation, either version 3 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This library is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU Lesser General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU Lesser General Public License | ||||
|  * along with this program.  If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||||
|  */ | ||||
|  | ||||
| #include "yadisk_get_disk.h" | ||||
| #include "yadisk_api_internal.h" | ||||
|   | ||||
| @@ -1,6 +1,23 @@ | ||||
| // | ||||
| // Created by maxim on 27.11.23. | ||||
| // | ||||
| /* | ||||
|  * libyadisk - A C library for interacting with Yandex.Disk API | ||||
|  * | ||||
|  * This file is part of libyadisk. | ||||
|  * | ||||
|  * Copyright (C) 2023 Maxim Slipenko | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU Lesser General Public License as published by | ||||
|  * the Free Software Foundation, either version 3 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This library is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU Lesser General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU Lesser General Public License | ||||
|  * along with this program.  If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||||
|  */ | ||||
|  | ||||
| #ifndef YADISK_YADISK_GET_DISK_H | ||||
| #define YADISK_YADISK_GET_DISK_H | ||||
|   | ||||
| @@ -1,6 +1,22 @@ | ||||
| // | ||||
| // Created by maxim on 27.11.23. | ||||
| // | ||||
| /* | ||||
|  * libyadisk - A C library for interacting with Yandex.Disk API | ||||
|  * | ||||
|  * Copyright (C) 2023 Maxim Slipenko | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU Lesser General Public License as published by | ||||
|  * the Free Software Foundation, either version 3 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This library is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU Lesser General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU Lesser General Public License | ||||
|  * along with this program.  If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||||
|  */ | ||||
|  | ||||
| #include "yadisk_get_disk_resources.h" | ||||
| #include "yadisk_api_internal.h" | ||||
|  | ||||
|   | ||||
| @@ -1,6 +1,24 @@ | ||||
| // | ||||
| // Created by maxim on 27.11.23. | ||||
| // | ||||
| /* | ||||
|  * libyadisk - A C library for interacting with Yandex.Disk API | ||||
|  * | ||||
|  * This file is part of libyadisk. | ||||
|  * | ||||
|  * Copyright (C) 2023 Maxim Slipenko | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU Lesser General Public License as published by | ||||
|  * the Free Software Foundation, either version 3 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This library is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU Lesser General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU Lesser General Public License | ||||
|  * along with this program.  If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||||
|  */ | ||||
|  | ||||
| #ifndef YADISK_GET_DISK_RESOURCES_H_INCLUDED | ||||
| #define YADISK_GET_DISK_RESOURCES_H_INCLUDED | ||||
|  | ||||
|   | ||||
| @@ -1,6 +1,23 @@ | ||||
| // | ||||
| // Created by maxim on 27.11.23. | ||||
| // | ||||
| /* | ||||
|  * libyadisk - A C library for interacting with Yandex.Disk API | ||||
|  * | ||||
|  * This file is part of libyadisk. | ||||
|  * | ||||
|  * Copyright (C) 2023 Maxim Slipenko | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU Lesser General Public License as published by | ||||
|  * the Free Software Foundation, either version 3 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This library is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU Lesser General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU Lesser General Public License | ||||
|  * along with this program.  If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||||
|  */ | ||||
|  | ||||
| #include "yadisk_shared.h" | ||||
|  | ||||
|   | ||||
| @@ -1,6 +1,23 @@ | ||||
| // | ||||
| // Created by maxim on 27.11.23. | ||||
| // | ||||
| /* | ||||
|  * libyadisk - A C library for interacting with Yandex.Disk API | ||||
|  * | ||||
|  * This file is part of libyadisk. | ||||
|  * | ||||
|  * Copyright (C) 2023 Maxim Slipenko | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU Lesser General Public License as published by | ||||
|  * the Free Software Foundation, either version 3 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This library is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU Lesser General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU Lesser General Public License | ||||
|  * along with this program.  If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||||
|  */ | ||||
|  | ||||
| #ifndef YADISK_YADISK_SHARED_H | ||||
| #define YADISK_YADISK_SHARED_H | ||||
|   | ||||
							
								
								
									
										24
									
								
								tests/app.c
									
									
									
									
									
								
							
							
						
						
									
										24
									
								
								tests/app.c
									
									
									
									
									
								
							| @@ -1,7 +1,23 @@ | ||||
| // | ||||
| // Created by maxim on 27.11.23. | ||||
| // | ||||
|  | ||||
| /* | ||||
|  * libyadisk - A C library for interacting with Yandex.Disk API | ||||
|  * | ||||
|  * This file is part of libyadisk. | ||||
|  * | ||||
|  * Copyright (C) 2023 Maxim Slipenko | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU Lesser General Public License as published by | ||||
|  * the Free Software Foundation, either version 3 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This library is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU Lesser General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU Lesser General Public License | ||||
|  * along with this program.  If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||||
|  */ | ||||
| #include <yadisk.h> | ||||
| #include <stdio.h> | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user