Skip to content

Commit

Permalink
Merge pull request #2 from AUDIY/Change_Copyright_Notice_2025
Browse files Browse the repository at this point in the history
Change copyright notice to 2025
  • Loading branch information
AUDIY authored Jan 3, 2025
2 parents 48fe187 + 2709fc4 commit abaeb4c
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions DSFIO/alloc_DSF.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* alloc_DSD.c */

/*----------------------------------------------------
Copyright (c) 2024 AUDIY
Copyright (c) 2024 - 2025 AUDIY
Released under the MIT license
https://opensource.org/licenses/mit-license.php
----------------------------------------------------*/
Expand All @@ -24,4 +24,4 @@ DSF *alloc_DSF(void){

/* Return Allocated DSD struct */
return dsf;
}
}
4 changes: 2 additions & 2 deletions DSFIO/alloc_STREAM.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* alloc_STREAM.c */

/*----------------------------------------------------
Copyright (c) 2024 AUDIY
Copyright (c) 2024 - 2025 AUDIY
Released under the MIT license
https://opensource.org/licenses/mit-license.php
----------------------------------------------------*/
Expand All @@ -24,4 +24,4 @@ DSD_STREAM *alloc_STREAM(void){

/* Return Allocated struct pointer. */
return stream;
}
}
4 changes: 2 additions & 2 deletions DSFIO/dsfio.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* dsfio.h */

/*----------------------------------------------------
Copyright (c) 2024 AUDIY
Copyright (c) 2024 - 2025 AUDIY
Released under the MIT license
https://opensource.org/licenses/mit-license.php
----------------------------------------------------*/
Expand Down Expand Up @@ -76,4 +76,4 @@ void shape_STREAM(DSF *dsf, DSD_STREAM *stream); /* shape_STREAM.c */
#endif

/* Close include guard */
#endif
#endif
4 changes: 2 additions & 2 deletions DSFIO/free_DSF.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* free_DSD.c */

/*----------------------------------------------------
Copyright (c) 2024 AUDIY
Copyright (c) 2024 - 2025 AUDIY
Released under the MIT license
https://opensource.org/licenses/mit-license.php
----------------------------------------------------*/
Expand All @@ -21,4 +21,4 @@ void free_DSF(DSF *dsf){

/* Free DSD struct */
free(dsf);
}
}
4 changes: 2 additions & 2 deletions DSFIO/free_STREAM.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* free_STREAM.c */

/*----------------------------------------------------
Copyright (c) 2024 AUDIY
Copyright (c) 2024 - 2025 AUDIY
Released under the MIT license
https://opensource.org/licenses/mit-license.php
----------------------------------------------------*/
Expand All @@ -22,4 +22,4 @@ void free_STREAM(DSD_STREAM *stream){

/* free struct */
free(stream);
}
}
2 changes: 1 addition & 1 deletion DSFIO/read_DSF.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* read_DSD.c */

/*----------------------------------------------------
Copyright (c) 2024 AUDIY
Copyright (c) 2024 - 2025 AUDIY
Released under the MIT license
https://opensource.org/licenses/mit-license.php
----------------------------------------------------*/
Expand Down
4 changes: 2 additions & 2 deletions DSFIO/shape_STREAM.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* shape_STREAM.c */

/*----------------------------------------------------
Copyright (c) 2024 AUDIY
Copyright (c) 2024 - 2025 AUDIY
Released under the MIT license
https://opensource.org/licenses/mit-license.php
----------------------------------------------------*/
Expand Down Expand Up @@ -55,4 +55,4 @@ void shape_STREAM(DSF *dsf, DSD_STREAM *stream){
stream->DSDL = dsdl_ptr;
stream->DSDR = dsdr_ptr;
dsf->data.data = data_ptr;
}
}
2 changes: 1 addition & 1 deletion samples/dsfio_sample.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Print DSD stream by 8bit.

/*----------------------------------------------------
Copyright (c) 2024 AUDIY
Copyright (c) 2024 - 2025 AUDIY
Released under the MIT license
https://opensource.org/licenses/mit-license.php
----------------------------------------------------*/
Expand Down
2 changes: 1 addition & 1 deletion samples/dsfio_sample2.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Print DSD stream by 1bit.

/*----------------------------------------------------
Copyright (c) 2024 AUDIY
Copyright (c) 2024 - 2025 AUDIY
Released under the MIT license
https://opensource.org/licenses/mit-license.php
----------------------------------------------------*/
Expand Down

0 comments on commit abaeb4c

Please sign in to comment.