Skip to content

Commit 8c014d9

Browse files
committed
Fix nasa#77, Remove old copyright headers
1 parent 7b00e67 commit 8c014d9

File tree

10 files changed

+14
-226
lines changed

10 files changed

+14
-226
lines changed

fsw/public_inc/sample_lib.h

+4-26
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,7 @@
1-
/*************************************************************************
2-
**
3-
** GSC-18128-1, "Core Flight Executive Version 6.7"
4-
**
5-
** Copyright (c) 2006-2019 United States Government as represented by
6-
** the Administrator of the National Aeronautics and Space Administration.
7-
** All Rights Reserved.
8-
**
9-
** Licensed under the Apache License, Version 2.0 (the "License");
10-
** you may not use this file except in compliance with the License.
11-
** You may obtain a copy of the License at
12-
**
13-
** http://www.apache.org/licenses/LICENSE-2.0
14-
**
15-
** Unless required by applicable law or agreed to in writing, software
16-
** distributed under the License is distributed on an "AS IS" BASIS,
17-
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18-
** See the License for the specific language governing permissions and
19-
** limitations under the License.
20-
**
21-
** File: sample_lib.h
22-
**
23-
** Purpose:
24-
** Specification for the sample library functions.
25-
**
26-
*************************************************************************/
1+
/**
2+
* \file
3+
* Specification for the sample library functions.
4+
*/
275
#ifndef SAMPLE_LIB_H
286
#define SAMPLE_LIB_H
297

fsw/src/sample_lib.c

+4-26
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,7 @@
1-
/*************************************************************************
2-
**
3-
** GSC-18128-1, "Core Flight Executive Version 6.7"
4-
**
5-
** Copyright (c) 2006-2019 United States Government as represented by
6-
** the Administrator of the National Aeronautics and Space Administration.
7-
** All Rights Reserved.
8-
**
9-
** Licensed under the Apache License, Version 2.0 (the "License");
10-
** you may not use this file except in compliance with the License.
11-
** You may obtain a copy of the License at
12-
**
13-
** http://www.apache.org/licenses/LICENSE-2.0
14-
**
15-
** Unless required by applicable law or agreed to in writing, software
16-
** distributed under the License is distributed on an "AS IS" BASIS,
17-
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18-
** See the License for the specific language governing permissions and
19-
** limitations under the License.
20-
**
21-
** File: sample_lib.c
22-
**
23-
** Purpose:
24-
** Sample CFS library
25-
**
26-
*************************************************************************/
1+
/**
2+
* @file
3+
* Sample CFS library
4+
*/
275

286
/*************************************************************************
297
** Includes

fsw/src/sample_lib_internal.h

+4-28
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,7 @@
1-
/************************************************************************
2-
**
3-
** GSC-18128-1, "Core Flight Executive Version 6.7"
4-
**
5-
** Copyright (c) 2006-2019 United States Government as represented by
6-
** the Administrator of the National Aeronautics and Space Administration.
7-
** All Rights Reserved.
8-
**
9-
** Licensed under the Apache License, Version 2.0 (the "License");
10-
** you may not use this file except in compliance with the License.
11-
** You may obtain a copy of the License at
12-
**
13-
** http://www.apache.org/licenses/LICENSE-2.0
14-
**
15-
** Unless required by applicable law or agreed to in writing, software
16-
** distributed under the License is distributed on an "AS IS" BASIS,
17-
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18-
** See the License for the specific language governing permissions and
19-
** limitations under the License.
20-
**
21-
** File: sample_lib_internal.h
22-
**
23-
** Purpose:
24-
** An example of an internal (private) header file for SAMPLE Lib
25-
**
26-
** Notes:
27-
**
28-
*************************************************************************/
1+
/**
2+
* @file
3+
* An example of an internal (private) header file for SAMPLE Lib
4+
*/
295
#ifndef SAMPLE_LIB_INTERNAL_H
306
#define SAMPLE_LIB_INTERNAL_H
317

fsw/src/sample_lib_version.h

+2-26
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,6 @@
1-
/************************************************************************
2-
**
3-
** GSC-18128-1, "Core Flight Executive Version 6.7"
4-
**
5-
** Copyright (c) 2006-2019 United States Government as represented by
6-
** the Administrator of the National Aeronautics and Space Administration.
7-
** All Rights Reserved.
8-
**
9-
** Licensed under the Apache License, Version 2.0 (the "License");
10-
** you may not use this file except in compliance with the License.
11-
** You may obtain a copy of the License at
12-
**
13-
** http://www.apache.org/licenses/LICENSE-2.0
14-
**
15-
** Unless required by applicable law or agreed to in writing, software
16-
** distributed under the License is distributed on an "AS IS" BASIS,
17-
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18-
** See the License for the specific language governing permissions and
19-
** limitations under the License.
20-
**
21-
*************************************************************************/
22-
23-
/*! @file
24-
* @brief Purpose:
25-
*
1+
/**
2+
* @file
263
* The Sample Lib header file containing version information
27-
*
284
*/
295

306
#ifndef SAMPLE_LIB_VERSION_H

unit-test/coveragetest/coveragetest_sample_lib.c

-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
1-
/*
2-
** GSC-18128-1, "Core Flight Executive Version 6.7"
3-
**
4-
** Copyright (c) 2006-2019 United States Government as represented by
5-
** the Administrator of the National Aeronautics and Space Administration.
6-
** All Rights Reserved.
7-
**
8-
** Licensed under the Apache License, Version 2.0 (the "License");
9-
** you may not use this file except in compliance with the License.
10-
** You may obtain a copy of the License at
11-
**
12-
** http://www.apache.org/licenses/LICENSE-2.0
13-
**
14-
** Unless required by applicable law or agreed to in writing, software
15-
** distributed under the License is distributed on an "AS IS" BASIS,
16-
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
** See the License for the specific language governing permissions and
18-
** limitations under the License.
19-
*/
20-
211
/*
222
** File: coveragetest_sample_lib.c
233
**

unit-test/coveragetest/sample_lib_coveragetest_common.h

-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
1-
/*
2-
** GSC-18128-1, "Core Flight Executive Version 6.7"
3-
**
4-
** Copyright (c) 2006-2019 United States Government as represented by
5-
** the Administrator of the National Aeronautics and Space Administration.
6-
** All Rights Reserved.
7-
**
8-
** Licensed under the Apache License, Version 2.0 (the "License");
9-
** you may not use this file except in compliance with the License.
10-
** You may obtain a copy of the License at
11-
**
12-
** http://www.apache.org/licenses/LICENSE-2.0
13-
**
14-
** Unless required by applicable law or agreed to in writing, software
15-
** distributed under the License is distributed on an "AS IS" BASIS,
16-
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
** See the License for the specific language governing permissions and
18-
** limitations under the License.
19-
*/
20-
211
/*
222
** File: sample_lib_coveragetest_common.h
233
**

unit-test/inc/OCS_string.h

-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
1-
/*
2-
** GSC-18128-1, "Core Flight Executive Version 6.7"
3-
**
4-
** Copyright (c) 2006-2019 United States Government as represented by
5-
** the Administrator of the National Aeronautics and Space Administration.
6-
** All Rights Reserved.
7-
**
8-
** Licensed under the Apache License, Version 2.0 (the "License");
9-
** you may not use this file except in compliance with the License.
10-
** You may obtain a copy of the License at
11-
**
12-
** http://www.apache.org/licenses/LICENSE-2.0
13-
**
14-
** Unless required by applicable law or agreed to in writing, software
15-
** distributed under the License is distributed on an "AS IS" BASIS,
16-
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
** See the License for the specific language governing permissions and
18-
** limitations under the License.
19-
*/
20-
211
/*
222
** File: string.h
233
**

unit-test/override_inc/string.h

-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
1-
/*
2-
** GSC-18128-1, "Core Flight Executive Version 6.7"
3-
**
4-
** Copyright (c) 2006-2019 United States Government as represented by
5-
** the Administrator of the National Aeronautics and Space Administration.
6-
** All Rights Reserved.
7-
**
8-
** Licensed under the Apache License, Version 2.0 (the "License");
9-
** you may not use this file except in compliance with the License.
10-
** You may obtain a copy of the License at
11-
**
12-
** http://www.apache.org/licenses/LICENSE-2.0
13-
**
14-
** Unless required by applicable law or agreed to in writing, software
15-
** distributed under the License is distributed on an "AS IS" BASIS,
16-
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
** See the License for the specific language governing permissions and
18-
** limitations under the License.
19-
*/
20-
211
/*
222
** File: string.h
233
**

unit-test/override_src/libc_string_stubs.c

-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
1-
/*
2-
** GSC-18128-1, "Core Flight Executive Version 6.7"
3-
**
4-
** Copyright (c) 2006-2019 United States Government as represented by
5-
** the Administrator of the National Aeronautics and Space Administration.
6-
** All Rights Reserved.
7-
**
8-
** Licensed under the Apache License, Version 2.0 (the "License");
9-
** you may not use this file except in compliance with the License.
10-
** You may obtain a copy of the License at
11-
**
12-
** http://www.apache.org/licenses/LICENSE-2.0
13-
**
14-
** Unless required by applicable law or agreed to in writing, software
15-
** distributed under the License is distributed on an "AS IS" BASIS,
16-
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
** See the License for the specific language governing permissions and
18-
** limitations under the License.
19-
*/
20-
211
/*
222
** File: libc_string_stubs.c
233
**

ut-stubs/sample_lib_stubs.c

-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
1-
/*
2-
** GSC-18128-1, "Core Flight Executive Version 6.7"
3-
**
4-
** Copyright (c) 2006-2019 United States Government as represented by
5-
** the Administrator of the National Aeronautics and Space Administration.
6-
** All Rights Reserved.
7-
**
8-
** Licensed under the Apache License, Version 2.0 (the "License");
9-
** you may not use this file except in compliance with the License.
10-
** You may obtain a copy of the License at
11-
**
12-
** http://www.apache.org/licenses/LICENSE-2.0
13-
**
14-
** Unless required by applicable law or agreed to in writing, software
15-
** distributed under the License is distributed on an "AS IS" BASIS,
16-
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
** See the License for the specific language governing permissions and
18-
** limitations under the License.
19-
*/
20-
211
/*
222
** File: sample_lib_stubs.c
233
**

0 commit comments

Comments
 (0)