Skip to content

Commit e544a50

Browse files
committed
atomic updated
1 parent 772dfa6 commit e544a50

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ read more [here](https://ros-developer.com/2017/11/08/docker/)
5454
* [Allocator](docs/allocator.md)
5555
* [Algorithms library](src/algorithms_library.cpp)
5656
* [Assert](docs/assert.md)
57+
* [Atomic operations and Types](docs/atomic.md)
5758
* [Attribute [[ attribute-list ]] ](docs/attribute.md)
5859
* [Basic IO Operation, Streams, Reading/Writing Files, Formating Output, cin, scanf, gets, getline, printf](docs/basic_IO_operation.md)
5960
* [Bitset, Bit field, Bitwise Operations](docs/bitset_bit_field_bitwise_operations.md)

clang_format.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
#!/bin/bash
2+
case "$OSTYPE" in
3+
solaris*) echo "SOLARIS" ;;
4+
darwin*) echo "OSX" ;;
5+
linux*) echo "LINUX" ;;
6+
bsd*) echo "BSD" ;;
7+
msys*) echo "WINDOWS" ;;
8+
cygwin*) echo "ALSO WINDOWS" ;;
9+
*) echo "unknown: $OSTYPE" ;;
10+
esac
11+
112
# Regexp for grep to only choose some file extensions for formatting
213
exts="\.\(cpp\|hpp\|cc\|hh\|c\|h\)$"
314

0 commit comments

Comments
 (0)